Skip to content

Commit a4ce282

Browse files
committed
Some indentation
in anticipation of another change.
1 parent 69e7f1c commit a4ce282

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

include/json/config.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@
5757
// #define JSON_NO_INT64 1
5858

5959
#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)
6868
#endif // if defined(_MSC_VER) && _MSC_VER < 1200 // MSVC 6
6969

7070
#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.
7272
#define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
7373
#elif defined(__clang__) && defined(__has_feature)
7474
#if __has_feature(attribute_deprecated_with_message)

0 commit comments

Comments
 (0)