Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef BOOST_PREDEF_DETAIL_ENDIAN_COMPAT_H
00009 #define BOOST_PREDEF_DETAIL_ENDIAN_COMPAT_H
00010
00011 #include <boost/predef/other/endian.h>
00012
00013 #if BOOST_ENDIAN_BIG_BYTE
00014 # define BOOST_BIG_ENDIAN
00015 # define BOOST_BYTE_ORDER 4321
00016 #endif
00017 #if BOOST_ENDIAN_LITTLE_BYTE
00018 # define BOOST_LITTLE_ENDIAN
00019 # define BOOST_BYTE_ORDER 1234
00020 #endif
00021 #if BOOST_ENDIAN_LITTLE_WORD
00022 # define BOOST_PDP_ENDIAN
00023 # define BOOST_BYTE_ORDER 2134
00024 #endif
00025
00026 #endif