From d3dbbeeeaaa7006e7f1bda592650957987145e6d Mon Sep 17 00:00:00 2001 From: Ariel Constenla-Haile Date: Sun, 10 Jun 2012 13:05:15 +0000 Subject: GCC 4.7 build breakers --- comphelper/inc/comphelper/InlineContainer.hxx | 2 +- comphelper/inc/comphelper/sequenceasvector.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'comphelper') 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; ipush_back(pSource[i]); } //--------------------------------------- -- cgit