diff options
-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; } } |