summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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 @@
1/* 1/*
2 * Copyright (c) 2010 Isode Limited. 2 * Copyright (c) 2010-2019 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -43,9 +43,9 @@
43#endif 43#endif
44 44
45// Endianness 45// Endianness
46#include <boost/detail/endian.hpp> 46#include <boost/predef/other/endian.h>
47#if defined(BOOST_LITTLE_ENDIAN) 47#if defined(BOOST_ENDIAN_LITTLE_BYTE)
48#define SWIFTEN_LITTLE_ENDIAN 48#define SWIFTEN_LITTLE_ENDIAN
49#elif defined(BOOST_BIG_ENDIAN) 49#elif defined(BOOST_ENDIAN_BIG_BYTE)
50#define SWIFTEN_BIG_ENDIAN 50#define SWIFTEN_BIG_ENDIAN
51#endif 51#endif