Skip to content

Commit 3a0c4fc

Browse files
committed
Ran clang-format again.
1 parent 445328a commit 3a0c4fc

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

include/json/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ typedef unsigned __int64 UInt64;
102102
#else // if defined(_MSC_VER) // Other platforms, use long long
103103
typedef long long int Int64;
104104
typedef unsigned long long int UInt64;
105-
#endif // if defined(_MSC_VER)
105+
#endif // if defined(_MSC_VER)
106106
typedef Int64 LargestInt;
107107
typedef UInt64 LargestUInt;
108108
#define JSON_HAS_INT64

include/json/value.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ enum CommentPlacement {
4949
commentBefore = 0, ///< a comment placed on the line before a value
5050
commentAfterOnSameLine, ///< a comment just after a value on the same line
5151
commentAfter, ///< a comment on the line after a value (only make sense for
52-
///root value)
52+
/// root value)
5353
numberOfCommentPlacement
5454
};
5555

src/lib_json/json_value.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ static inline char *duplicateStringValue(const char *value,
8383
length = Value::maxInt - 1;
8484

8585
char *newString = static_cast<char *>(malloc(length + 1));
86-
JSON_ASSERT_MESSAGE(newString != 0, "in Json::Value::duplicateStringValue(): "
87-
"Failed to allocate string value buffer");
86+
JSON_ASSERT_MESSAGE(newString != 0,
87+
"in Json::Value::duplicateStringValue(): "
88+
"Failed to allocate string value buffer");
8889
memcpy(newString, value, length);
8990
newString[length] = 0;
9091
return newString;

0 commit comments

Comments
 (0)