diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-03-17 11:19:36 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-03-17 14:54:26 +0100 |
commit | 84eacd97f0151076edf05ef0db69286476d222b9 (patch) | |
tree | 3b2aecb27313995c9cabaa7be3158f91ebd84994 /oox | |
parent | a908de74eb7ba8a37d059857df34ce44f801ca3c (diff) |
Missing include (Windows --disable-pch; for std::max)
Change-Id: Ib7ea5f07d1aecb67fdaf2ee5badbca748c961490
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90607
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/relations.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/oox/source/core/relations.cxx b/oox/source/core/relations.cxx index 90573ba2f9b0..cd2570052eb6 100644 --- a/oox/source/core/relations.cxx +++ b/oox/source/core/relations.cxx @@ -17,6 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <algorithm> + #include <oox/core/relations.hxx> namespace oox::core { |