diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-11-21 12:16:37 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-11-21 12:47:51 +0100 |
commit | 2b14fb3a4f92b928f0a5fc536c6a5f4a6e51a9b8 (patch) | |
tree | 64d19e448858cf2f963fa0b16df6913e0587d145 /include/oox/helper | |
parent | e2f08f9def0869460ad38a1c2adb450778290f6e (diff) |
cppcanvas, oox: add missing #include <osl/endian.h>
These files use the macro OSL_BIGENDIAN but did not include the header
that defines it.
Found via:
git grep -l OSL_.*ENDIAN | grep -E '\.h(xx)?$' | while read f; do grep -L endian\\.h $f ; done
Change-Id: Iffb36336026e49a9c3d8fcf125a54ec857c7552e
Diffstat (limited to 'include/oox/helper')
-rw-r--r-- | include/oox/helper/helper.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/oox/helper/helper.hxx b/include/oox/helper/helper.hxx index 1d274b116ffc..2dc924360227 100644 --- a/include/oox/helper/helper.hxx +++ b/include/oox/helper/helper.hxx @@ -26,6 +26,7 @@ #include <cstring> #include <limits> +#include <osl/endian.h> #include <rtl/math.hxx> #include <rtl/string.hxx> #include <rtl/textenc.h> |