diff options
author | Tom Tromey <tromey@redhat.com> | 2011-08-11 09:58:30 +0100 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-08-11 09:58:30 +0100 |
commit | c2a634416ba8f385c25c16cc52aeae6f68cab9db (patch) | |
tree | 116687f511d495e8cf458566eb7ca88feb711a50 /comphelper | |
parent | fa53c328cb028f61f8bff25d1960a94ad39f51ca (diff) |
fix more -fpermissive compile errors from trunck gcc
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/inc/comphelper/sequenceasvector.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/inc/comphelper/sequenceasvector.hxx b/comphelper/inc/comphelper/sequenceasvector.hxx index f44df7a63e1e..909893a88b5d 100644 --- a/comphelper/inc/comphelper/sequenceasvector.hxx +++ b/comphelper/inc/comphelper/sequenceasvector.hxx @@ -147,7 +147,7 @@ class SequenceAsVector : public ::std::vector< TElementType > const TElementType* pSource = lSource.getConstArray(); for (sal_Int32 i=0; i<c; ++i) - push_back(pSource[i]); + this->push_back(pSource[i]); } //--------------------------------------- |