mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-30 00:50:48 +08:00
19 lines
369 B
C++
19 lines
369 B
C++
#ifndef MSGPACK_CPP_VERSION_HPP
|
|
#define MSGPACK_CPP_VERSION_HPP
|
|
|
|
#if defined(_MSC_VER)
|
|
# if _MSC_VER < 1900
|
|
# define MSGPACK_USE_CPP03
|
|
# endif
|
|
#elif (__cplusplus < 201103L)
|
|
# define MSGPACK_USE_CPP03
|
|
#endif
|
|
|
|
#if defined(_MSVC_LANG)
|
|
# define MSGPACK_CPP_VERSION _MSVC_LANG
|
|
#else
|
|
# define MSGPACK_CPP_VERSION __cplusplus
|
|
#endif
|
|
|
|
#endif // MSGPACK_CPP_VERSION_HPP
|