From 8de6948e4f67b65d0320f7ec08ab9ad8328b2411 Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Thu, 29 Sep 2011 13:11:26 +0200 Subject: fix trunk gcc compile errors --- comphelper/inc/comphelper/InlineContainer.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comphelper') 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) { -- cgit