mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-15 00:48:18 -05:00
12 lines
178 B
C
12 lines
178 B
C
// Workaround MSVC warnings
|
|
#ifdef _MSC_VER
|
|
#pragma warning(push)
|
|
#pragma warning(disable:4267)
|
|
#endif
|
|
|
|
#include "msgpack.hpp"
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif
|