summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2016-03-09 00:01:36 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-09 07:53:56 +0000
commitadfa77254927dcb3f2a87eb0d23c71ad7282948b (patch)
tree9f5334e3eee7b42ae20a5e7b947cf8c57dc5c2b2
parent1baf5c3c66700b8072436ae0fdb210a442cc7e68 (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>
-rw-r--r--chart2/source/inc/CommonConverters.hxx1
-rw-r--r--chart2/source/tools/DataSourceHelper.cxx2
-rw-r--r--dbaccess/source/filter/xml/xmlExport.cxx1
-rw-r--r--sd/source/ui/sidebar/MasterPageObserver.cxx1
-rw-r--r--sfx2/source/view/classificationhelper.cxx1
-rw-r--r--slideshow/source/engine/shapes/drawshape.cxx1
-rw-r--r--svx/source/form/formcontroller.cxx1
-rw-r--r--vcl/source/gdi/textlayout.cxx1
-rw-r--r--xmloff/source/chart/SchXMLTableContext.cxx1
-rw-r--r--xmloff/source/text/txtparae.cxx1
10 files changed, 11 insertions, 0 deletions
diff --git a/chart2/source/inc/CommonConverters.hxx b/chart2/source/inc/CommonConverters.hxx
index 46288be417b5..af72ba1c2844 100644
--- a/chart2/source/inc/CommonConverters.hxx
+++ b/chart2/source/inc/CommonConverters.hxx
@@ -38,6 +38,7 @@
#include <vector>
#include <algorithm>
+#include <iterator>
namespace chart
{
diff --git a/chart2/source/tools/DataSourceHelper.cxx b/chart2/source/tools/DataSourceHelper.cxx
index 6e3773268179..3d90fa97d338 100644
--- a/chart2/source/tools/DataSourceHelper.cxx
+++ b/chart2/source/tools/DataSourceHelper.cxx
@@ -37,6 +37,8 @@
#include <com/sun/star/chart/ChartDataRowSource.hpp>
#include <com/sun/star/chart/ErrorBarStyle.hpp>
+#include <iterator>
+
namespace chart
{
using namespace ::com::sun::star;
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx
index 14bf274a63af..2938173bb2a1 100644
--- a/dbaccess/source/filter/xml/xmlExport.cxx
+++ b/dbaccess/source/filter/xml/xmlExport.cxx
@@ -54,6 +54,7 @@
#include <boost/optional.hpp>
#include <memory>
+#include <iterator>
namespace dbaxml
{
diff --git a/sd/source/ui/sidebar/MasterPageObserver.cxx b/sd/source/ui/sidebar/MasterPageObserver.cxx
index 78b6dbc518de..cc32177d3bfa 100644
--- a/sd/source/ui/sidebar/MasterPageObserver.cxx
+++ b/sd/source/ui/sidebar/MasterPageObserver.cxx
@@ -20,6 +20,7 @@
#include "MasterPageObserver.hxx"
#include <algorithm>
+#include <iterator>
#include "drawdoc.hxx"
#include "sdpage.hxx"
#include <set>
diff --git a/sfx2/source/view/classificationhelper.cxx b/sfx2/source/view/classificationhelper.cxx
index c3161b651b93..ab913b537d3f 100644
--- a/sfx2/source/view/classificationhelper.cxx
+++ b/sfx2/source/view/classificationhelper.cxx
@@ -11,6 +11,7 @@
#include <map>
#include <algorithm>
+#include <iterator>
#include <com/sun/star/beans/XPropertyContainer.hpp>
#include <com/sun/star/document/XDocumentProperties.hpp>
diff --git a/slideshow/source/engine/shapes/drawshape.cxx b/slideshow/source/engine/shapes/drawshape.cxx
index 1d58d8df3c68..667a176a94f9 100644
--- a/slideshow/source/engine/shapes/drawshape.cxx
+++ b/slideshow/source/engine/shapes/drawshape.cxx
@@ -49,6 +49,7 @@
#include <boost/mem_fn.hpp>
#include <cmath>
#include <algorithm>
+#include <iterator>
#include <functional>
#include <limits>
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx
index 238c26503391..d0c93d3b7de1 100644
--- a/svx/source/form/formcontroller.cxx
+++ b/svx/source/form/formcontroller.cxx
@@ -88,6 +88,7 @@
#include <osl/mutex.hxx>
#include <algorithm>
+#include <iterator>
#include <o3tl/functional.hxx>
diff --git a/vcl/source/gdi/textlayout.cxx b/vcl/source/gdi/textlayout.cxx
index 0b7ac697f8b0..1e01659c0a8a 100644
--- a/vcl/source/gdi/textlayout.cxx
+++ b/vcl/source/gdi/textlayout.cxx
@@ -33,6 +33,7 @@
#endif
#include <memory>
+#include <iterator>
namespace vcl
{
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;