diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2013-08-28 09:05:53 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2013-08-28 09:05:53 +0200 |
| commit | 7d9fbeffbafd3ebdd71407c498778b0e55ca20a4 (patch) | |
| tree | bed7f8927f7f0ef95476a6c1f89d3289484ba39a | |
| parent | 4f00cf1ab8d3843389df5375c846ce3076004238 (diff) | |
| download | enigma2-7d9fbeffbafd3ebdd71407c498778b0e55ca20a4.tar.gz enigma2-7d9fbeffbafd3ebdd71407c498778b0e55ca20a4.zip | |
fix broken compilation in eptrlist.h
| -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 ); } }; |
