aboutsummaryrefslogtreecommitdiff
path: root/lib/base/eptrlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base/eptrlist.h')
-rw-r--r--lib/base/eptrlist.h2
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 );
}
};