mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
Supported C++11 mode on MSVC2015.
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
// If MSVC would support C++11 completely,
|
||||
// then 'defined(_MSC_VER)' would replace with
|
||||
// '_MSC_VER < XXXX'
|
||||
# if (__cplusplus < 201103L) || defined(_MSC_VER)
|
||||
# if (__cplusplus < 201103L) || (defined(_MSC_VER) && (_MSC_VER < 1900))
|
||||
# define MSGPACK_USE_CPP03
|
||||
# endif
|
||||
#endif // MSGPACK_USE_CPP03
|
||||
|
||||
Reference in New Issue
Block a user