diff options
author | Tom Tromey <tromey@redhat.com> | 2011-08-11 09:37:59 +0100 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-08-11 09:37:59 +0100 |
commit | fa53c328cb028f61f8bff25d1960a94ad39f51ca (patch) | |
tree | 8c3a6b99c47d0252a9702ec955c093e523797625 /o3tl | |
parent | 1a35f23a2ccb17c3e8e0cb218bb1cf886b4c7124 (diff) |
fix compile errors from trunck gcc
Diffstat (limited to 'o3tl')
-rw-r--r-- | o3tl/inc/o3tl/vector_pool.hxx | 2 |
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; } } |