diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-09-29 13:11:26 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-09-29 13:22:57 +0200 |
commit | 8de6948e4f67b65d0320f7ec08ab9ad8328b2411 (patch) | |
tree | a0727d9ed0cfb35861b3074950b1e285176f5c4d /comphelper | |
parent | 3482b33aeee0e2f87ab33da7f543d9aff897e66b (diff) |
fix trunk gcc compile errors
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/InlineContainer.hxx | 2 |
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) { |