[Libreoffice-commits] core.git: lotuswordpro/source sal/rtl tools/source

Stephan Bergmann sbergman at redhat.com
Wed Jan 17 10:07:36 UTC 2018


 lotuswordpro/source/filter/explode.cxx  |    2 ++
 lotuswordpro/source/filter/lwptable.cxx |    4 ++++
 sal/rtl/alloc_global.cxx                |    1 +
 tools/source/zcodec/zcodec.cxx          |    4 ++++
 4 files changed, 11 insertions(+)

New commits:
commit 3f84927c1cdadffe1eebb9cd6843587245588b91
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Jan 17 08:22:03 2018 +0100

    Missing includes (Windows --disable-pch)
    
    Change-Id: I5cd3297cff31b88c53cd04232bed40cbf04fa2f6
    Reviewed-on: https://gerrit.libreoffice.org/48028
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/lotuswordpro/source/filter/explode.cxx b/lotuswordpro/source/filter/explode.cxx
index fa04eac514d2..5d821698745c 100644
--- a/lotuswordpro/source/filter/explode.cxx
+++ b/lotuswordpro/source/filter/explode.cxx
@@ -56,6 +56,8 @@
 
 #include "explode.hxx"
 #include <tools/stream.hxx>
+
+#include <algorithm>
 #include <assert.h>
 #include <math.h>
 
diff --git a/lotuswordpro/source/filter/lwptable.cxx b/lotuswordpro/source/filter/lwptable.cxx
index 63ecd92b6e52..31d55cc6895f 100644
--- a/lotuswordpro/source/filter/lwptable.cxx
+++ b/lotuswordpro/source/filter/lwptable.cxx
@@ -58,6 +58,10 @@
  *  For LWP filter architecture prototype - table object
  */
 
+#include <sal/config.h>
+
+#include <algorithm>
+
  #include "lwptable.hxx"
 
  LwpSuperTable::LwpSuperTable(LwpObjectHeader const &objHdr, LwpSvStream* pStrm):LwpContent(objHdr, pStrm)
diff --git a/sal/rtl/alloc_global.cxx b/sal/rtl/alloc_global.cxx
index efbd2748dbf8..1a3a26f00069 100644
--- a/sal/rtl/alloc_global.cxx
+++ b/sal/rtl/alloc_global.cxx
@@ -22,6 +22,7 @@
 #include <sal/log.hxx>
 #include <sal/macros.h>
 
+#include <algorithm>
 #include <cassert>
 #include <string.h>
 #include <stdio.h>
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx
index ffa53955719b..12c6e9cc025d 100644
--- a/tools/source/zcodec/zcodec.cxx
+++ b/tools/source/zcodec/zcodec.cxx
@@ -17,6 +17,10 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include <sal/config.h>
+
+#include <algorithm>
+
 #include <tools/stream.hxx>
 
 #include <zlib.h>


More information about the Libreoffice-commits mailing list