CoolProp  6.6.0
An open-source fluid property and humid air property database
CPmsgpack.h
Go to the documentation of this file.
1 // Workaround MSVC warnings
2 #ifdef _MSC_VER
3 # pragma warning(push)
4 # pragma warning(disable : 4267)
5 #endif
6 
7 // Workaround MSVC endiannes issues
8 #if defined(_MSC_VER) && ( defined(_M_ARM) || defined(_M_ARM64) )
9 # define MSGPACK_ENDIAN_LITTLE_BYTE
10 #endif
11 
12 #include "msgpack.hpp"
13 
14 #if defined(MSGPACK_ENDIAN_LITTLE_BYTE)
15 # undef MSGPACK_ENDIAN_LITTLE_BYTE
16 #endif
17 
18 #ifdef _MSC_VER
19 # pragma warning(pop)
20 #endif