summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-09-29 13:11:26 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2011-09-29 13:22:57 +0200
commit8de6948e4f67b65d0320f7ec08ab9ad8328b2411 (patch)
treea0727d9ed0cfb35861b3074950b1e285176f5c4d /comphelper
parent3482b33aeee0e2f87ab33da7f543d9aff897e66b (diff)
fix trunk gcc compile errors
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/InlineContainer.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/inc/comphelper/InlineContainer.hxx b/comphelper/inc/comphelper/InlineContainer.hxx
index 13ae8a5cabd0..c7da02f159ad 100644
--- a/comphelper/inc/comphelper/InlineContainer.hxx
+++ b/comphelper/inc/comphelper/InlineContainer.hxx
@@ -100,7 +100,7 @@ public:
explicit MakeSet(const T &a)
: ::std::set< T >()
{
- insert(this->end(), a);
+ this->insert(this->end(), a);
}
MakeSet &operator()(const T &a)
{