Compile error on Mac, added "this->"

release/4.3a0
Frank Dellaert 2012-07-22 18:46:35 +00:00
parent c8daa42348
commit dda625b2e0
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public:
/** Conversion to a standard STL container */ /** Conversion to a standard STL container */
operator std::vector<VALUE>() const { operator std::vector<VALUE>() const {
return std::vector<VALUE>(begin(), end()); return std::vector<VALUE>(this->begin(), this->end());
} }
private: private: