diff options
author | Ariel Constenla-Haile <arielch@apache.org> | 2012-06-10 13:05:15 +0000 |
---|---|---|
committer | Ariel Constenla-Haile <arielch@apache.org> | 2012-06-10 13:05:15 +0000 |
commit | d3dbbeeeaaa7006e7f1bda592650957987145e6d (patch) | |
tree | 550bea8d3b54048416b03d9dd73403b7b7e194e6 /comphelper | |
parent | b85452001a10ac830828739f61a95b74143260d0 (diff) |
GCC 4.7 build breakers
Notes
Notes:
prefer: 8de6948e4f67b65d0320f7ec08ab9ad8328b2411
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/InlineContainer.hxx | 2 | ||||
-rw-r--r-- | comphelper/inc/comphelper/sequenceasvector.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/inc/comphelper/InlineContainer.hxx b/comphelper/inc/comphelper/InlineContainer.hxx index ec778956240e..ca8b7ed87265 100644 --- a/comphelper/inc/comphelper/InlineContainer.hxx +++ b/comphelper/inc/comphelper/InlineContainer.hxx @@ -95,7 +95,7 @@ public: explicit MakeSet(const T &a) : ::std::set< T >() { - insert(this->end(), a); + this->insert(this->end(), a); } MakeSet &operator()(const T &a) { diff --git a/comphelper/inc/comphelper/sequenceasvector.hxx b/comphelper/inc/comphelper/sequenceasvector.hxx index 2bf8af20a1e4..f72ded99332d 100644 --- a/comphelper/inc/comphelper/sequenceasvector.hxx +++ b/comphelper/inc/comphelper/sequenceasvector.hxx @@ -139,7 +139,7 @@ class SequenceAsVector : public ::std::vector< TElementType > const TElementType* pSource = lSource.getConstArray(); for (sal_Int32 i=0; i<c; ++i) - push_back(pSource[i]); + this->push_back(pSource[i]); } //--------------------------------------- |