summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiroslaw Stein <miroslaw.stein@isode.com>2019-01-18 14:30:24 (GMT)
committerEdwin Mons <edwin.mons@isode.com>2019-01-22 10:49:38 (GMT)
commit3666cbbe30e4d4e25401a5902ae359bc2c24248b (patch)
tree383caed6926f0706d755f3e57aa6121636a1053b /Swiften
parenta2dc74cd0e4891037b97b6a782de80458675e4f0 (diff)
downloadswift-3666cbbe30e4d4e25401a5902ae359bc2c24248b.zip
swift-3666cbbe30e4d4e25401a5902ae359bc2c24248b.tar.bz2
Avoid deprecated boost endianess include
As of Boost 1.69.0, boost/detail/endian.h is deprecated in favour of boost/predef/other/endian.h, and BOOST_(LITTLE|BIG)_ENDIAN by BOOST_ENDIAN_(LITTLE|BIG)_BYTE. Test-Information: Unit tests pass on Debian 9 Change-Id: If7076c559a4e35219ff97603f50b80cfbe05b29b
Diffstat (limited to 'Swiften')
-rw-r--r--Swiften/Base/Platform.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Base/Platform.h b/Swiften/Base/Platform.h
index 4deba2b..22dff30 100644
--- a/Swiften/Base/Platform.h
+++ b/Swiften/Base/Platform.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010 Isode Limited.
+ * Copyright (c) 2010-2019 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -43,9 +43,9 @@
#endif
// Endianness
-#include <boost/detail/endian.hpp>
-#if defined(BOOST_LITTLE_ENDIAN)
+#include <boost/predef/other/endian.h>
+#if defined(BOOST_ENDIAN_LITTLE_BYTE)
#define SWIFTEN_LITTLE_ENDIAN
-#elif defined(BOOST_BIG_ENDIAN)
+#elif defined(BOOST_ENDIAN_BIG_BYTE)
#define SWIFTEN_BIG_ENDIAN
#endif