aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2013-08-28 09:05:53 +0200
committerChristian Weiske <cweiske@cweiske.de>2013-08-28 09:05:53 +0200
commit7d9fbeffbafd3ebdd71407c498778b0e55ca20a4 (patch)
treebed7f8927f7f0ef95476a6c1f89d3289484ba39a
parent4f00cf1ab8d3843389df5375c846ce3076004238 (diff)
downloadenigma2-7d9fbeffbafd3ebdd71407c498778b0e55ca20a4.tar.gz
enigma2-7d9fbeffbafd3ebdd71407c498778b0e55ca20a4.zip
fix broken compilation in 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 );
}
};