diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-11-04 15:08:25 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-11-04 16:25:35 +0100 |
commit | a64c741f20dc3fcc8c47762b6cfe7f8551557394 (patch) | |
tree | 34e743cb5c04e3113d2f619eb9ef6f8c56209d11 /pyuno | |
parent | c637e34da807b82aebca82f7c82eb01e2ddb0f02 (diff) |
Replace only list by vector in pyuno
Change-Id: Ic770d1fb8e3735123786a73a7b57f71ad8005d5d
Reviewed-on: https://gerrit.libreoffice.org/44301
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_runtime.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx index 0955326f61fc..172c0313fd9e 100644 --- a/pyuno/source/module/pyuno_runtime.cxx +++ b/pyuno/source/module/pyuno_runtime.cxx @@ -31,7 +31,6 @@ #include <rtl/ustrbuf.hxx> #include <rtl/bootstrap.hxx> -#include <list> #include <typelib/typedescription.hxx> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> @@ -609,7 +608,7 @@ bool Runtime::pyIterUnpack( PyObject *const pObj, Any &a ) const return true; } - ::std::list<Any> items; + ::std::vector<Any> items; do { PyRef rItem( pItem, SAL_NO_ACQUIRE ); |