|
57 | 57 | // #define JSON_NO_INT64 1 |
58 | 58 |
|
59 | 59 | #if defined(_MSC_VER) && _MSC_VER <= 1200 // MSVC 6 |
60 | | -// Microsoft Visual Studio 6 only support conversion from __int64 to double |
61 | | -// (no conversion from unsigned __int64). |
62 | | -#define JSON_USE_INT64_DOUBLE_CONVERSION 1 |
63 | | -// Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255' |
64 | | -// characters in the debug information) |
65 | | -// All projects I've ever seen with VS6 were using this globally (not bothering |
66 | | -// with pragma push/pop). |
67 | | -#pragma warning(disable : 4786) |
| 60 | + // Microsoft Visual Studio 6 only support conversion from __int64 to double |
| 61 | + // (no conversion from unsigned __int64). |
| 62 | + #define JSON_USE_INT64_DOUBLE_CONVERSION 1 |
| 63 | + // Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255' |
| 64 | + // characters in the debug information) |
| 65 | + // All projects I've ever seen with VS6 were using this globally (not bothering |
| 66 | + // with pragma push/pop). |
| 67 | +# pragma warning(disable : 4786) |
68 | 68 | #endif // if defined(_MSC_VER) && _MSC_VER < 1200 // MSVC 6 |
69 | 69 |
|
70 | 70 | #if defined(_MSC_VER) && _MSC_VER >= 1500 // MSVC 2008 |
71 | | -/// Indicates that the following function is deprecated. |
| 71 | + /// Indicates that the following function is deprecated. |
72 | 72 | #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) |
73 | 73 | #elif defined(__clang__) && defined(__has_feature) |
74 | 74 | #if __has_feature(attribute_deprecated_with_message) |
|
0 commit comments