X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ff008af237bba3e58012f637cbe8996f4450f031..f5a64721338ea4cb821c024d27903ab127737fcd:/lib/base/eptrlist.h diff --git a/lib/base/eptrlist.h b/lib/base/eptrlist.h index 7e7a45a2..0da46daa 100644 --- a/lib/base/eptrlist.h +++ b/lib/base/eptrlist.h @@ -58,8 +58,8 @@ public: inline const T* last() const; // added operator methods - inline operator bool(); - inline bool operator!(); + inline operator bool() const; + inline bool operator!() const; // added compare struct ... to sort struct less; @@ -164,7 +164,7 @@ public: // returns a pointer to this new vector ( the reserved memory must deletet from the receiver !! ) std::vector* v=new std::vector(); v->reserve( std::list::size() ); - for ( std_list_T_iterator it( std::list::begin() ); it != std::list::end(); it++) + for ( std_list_T_iterator it( std::list::begin() ); it != std::list::end(); it++) v->push_back( **it ); return v; @@ -623,14 +623,14 @@ struct ePtrList::less /////////////////// ePtrList operator bool //////////////////// template -ePtrList::operator bool() +ePtrList::operator bool() const { // Returns a bool that contains true, when the list is NOT empty otherwise false return !std::list::empty(); } template -bool ePtrList::operator!() +bool ePtrList::operator!() const { // Returns a bool that contains true, when the list is empty otherwise false return std::list::empty(); @@ -687,8 +687,8 @@ public: inline const T* last() const; // added operator methods - inline operator bool(); - inline bool operator!(); + inline operator bool() const; + inline bool operator!() const; // added compare struct ... to sort struct less; @@ -1233,14 +1233,14 @@ struct eSmartPtrList::less /////////////////// eSmartPtrList operator bool //////////////////// template -eSmartPtrList::operator bool() +eSmartPtrList::operator bool() const { // Returns a bool that contains true, when the list is NOT empty otherwise false return !std::list::empty(); } template -bool eSmartPtrList::operator!() +bool eSmartPtrList::operator!() const { // Returns a bool that contains true, when the list is empty otherwise false return std::list::empty();