summaryrefslogtreecommitdiff
path: root/o3tl
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-08-11 09:37:59 +0100
committerNoel Power <noel.power@novell.com>2011-08-11 09:37:59 +0100
commitfa53c328cb028f61f8bff25d1960a94ad39f51ca (patch)
tree8c3a6b99c47d0252a9702ec955c093e523797625 /o3tl
parent1a35f23a2ccb17c3e8e0cb218bb1cf886b4c7124 (diff)
fix compile errors from trunck gcc
Diffstat (limited to 'o3tl')
-rw-r--r--o3tl/inc/o3tl/vector_pool.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/o3tl/inc/o3tl/vector_pool.hxx b/o3tl/inc/o3tl/vector_pool.hxx
index 28be1e199202..410c9f68b821 100644
--- a/o3tl/inc/o3tl/vector_pool.hxx
+++ b/o3tl/inc/o3tl/vector_pool.hxx
@@ -65,7 +65,7 @@ namespace o3tl
}
else
{
- push_back(value_type(rCopy));
+ this->push_back(value_type(rCopy));
return this->size()-1;
}
}