diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 17:02:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 17:03:55 +0000 |
commit | 5484475fc10e965248d6dbb7156a5cd180db88d2 (patch) | |
tree | 5e41bd2abf1dc14343cc1a02a4454df85d4c2423 | |
parent | 65e7851444f8f730470067a585e36ff8cf643682 (diff) |
include algorithm
Change-Id: I55abf17a1da2616ca2b1303747ca8cc7e402634e
-rw-r--r-- | package/source/zipapi/ZipOutputEntry.cxx | 2 | ||||
-rw-r--r-- | pyuno/source/module/pyuno_module.cxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/package/source/zipapi/ZipOutputEntry.cxx b/package/source/zipapi/ZipOutputEntry.cxx index 8243bdcdf76a..ae7b64530b0f 100644 --- a/package/source/zipapi/ZipOutputEntry.cxx +++ b/package/source/zipapi/ZipOutputEntry.cxx @@ -32,6 +32,8 @@ #include <ZipPackageBuffer.hxx> #include <ZipPackageStream.hxx> +#include <algorithm> + using namespace com::sun::star; using namespace com::sun::star::io; using namespace com::sun::star::uno; diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx index a214062c6a41..4968e6602164 100644 --- a/pyuno/source/module/pyuno_module.cxx +++ b/pyuno/source/module/pyuno_module.cxx @@ -84,7 +84,7 @@ class fillStructState // Keyword arguments used PyObject *used; // Which structure members are initialised - std::unordered_map <const OUString, bool, OUStringHash> initialised; + std::unordered_map <OUString, bool, OUStringHash> initialised; // How many positional arguments are consumed // This is always the so-many first ones sal_Int32 nPosConsumed; |