diff options
| -rw-r--r-- | lib/base/eptrlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/eptrlist.h b/lib/base/eptrlist.h index 0da46daa..b7067beb 100644 --- a/lib/base/eptrlist.h +++ b/lib/base/eptrlist.h @@ -174,7 +174,7 @@ public: { // added a new item to the list... in order // returns a iterator to the new item - return insert( std::lower_bound( std::list<T*>::begin(), std::list<T*>::end(), e, less()), e ); + return this->insert( std::lower_bound( std::list<T*>::begin(), std::list<T*>::end(), e, less()), e ); } }; |
