sw/source/filter/ww8/WW8Sttbf.cxx | 4 ++++ 1 file changed, 4 insertions(+)
New commits: commit da1de29f8410d352884688bd76bd07ca1c8f6ecd Author: Rene Engelhard <[email protected]> AuthorDate: Sat May 9 16:15:05 2020 +0200 Commit: Luboš Luňák <[email protected]> CommitDate: Mon May 11 14:34:48 2020 +0200 include <rtl/ustrbuf.hxx> since otherwise it isn't resolvable in !OSL_BIGENDIAN case (like on s390x) Change-Id: I18bc795744e70a459276b2c2d55e35411a5d672f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93865 Tested-by: Rene Engelhard <[email protected]> Tested-by: Jenkins Reviewed-by: Luboš Luňák <[email protected]> diff --git a/sw/source/filter/ww8/WW8Sttbf.cxx b/sw/source/filter/ww8/WW8Sttbf.cxx index 54e05c42ac02..1e23c8ca89a7 100644 --- a/sw/source/filter/ww8/WW8Sttbf.cxx +++ b/sw/source/filter/ww8/WW8Sttbf.cxx @@ -28,6 +28,10 @@ #include <sal/log.hxx> #include <osl/diagnose.h> +#ifdef OSL_BIGENDIAN +#include <rtl/ustrbuf.hxx> +#endif + namespace ww8 { WW8Struct::WW8Struct(SvStream& rSt, sal_uInt32 nPos, sal_uInt32 nSize) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
