diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-01-08 11:42:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-08 14:24:16 +0100 |
commit | 16f8807a9255359da53e980185591e356166e414 (patch) | |
tree | 63ac42efc88eecf58396f081504aca70225d2a70 /sw/source | |
parent | d486d675ead6a4b4c08ac0e6b9977d280f1606e0 (diff) |
Missing include (Windows --disable-pch; for std::min)
Change-Id: Ie6951257a94ae004e1a51f46e908917a07d137f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86417
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/WW8Sttbf.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/WW8Sttbf.cxx b/sw/source/filter/ww8/WW8Sttbf.cxx index cd253087d68a..54e05c42ac02 100644 --- a/sw/source/filter/ww8/WW8Sttbf.cxx +++ b/sw/source/filter/ww8/WW8Sttbf.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <algorithm> #include <iostream> #include "WW8Sttbf.hxx" #include <osl/endian.h> |