diff options
author | David Ostrovsky <david@ostrovsky.org> | 2016-03-09 00:01:36 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 07:53:56 +0000 |
commit | adfa77254927dcb3f2a87eb0d23c71ad7282948b (patch) | |
tree | 9f5334e3eee7b42ae20a5e7b947cf8c57dc5c2b2 /xmloff | |
parent | 1baf5c3c66700b8072436ae0fdb210a442cc7e68 (diff) |
Add missing includes
These include were needed to compile on Windows, MSVC 14.0 with
clang-cl.
Change-Id: I4ca5cec8314920e90fcca6fa69ec4df87d680f29
Reviewed-on: https://gerrit.libreoffice.org/23044
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLTableContext.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/xmloff/source/chart/SchXMLTableContext.cxx b/xmloff/source/chart/SchXMLTableContext.cxx index d70b8f6ddb34..5bef1072a65e 100644 --- a/xmloff/source/chart/SchXMLTableContext.cxx +++ b/xmloff/source/chart/SchXMLTableContext.cxx @@ -49,6 +49,7 @@ #include <vector> #include <algorithm> +#include <iterator> using namespace com::sun::star; using namespace ::xmloff::token; diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index b2c4320f8d6a..3cadc6acab51 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -109,6 +109,7 @@ #include <unordered_map> #include <vector> #include <algorithm> +#include <iterator> using namespace ::std; using namespace ::com::sun::star; |