mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-06-07 01:04:55 +02:00
Ran clang-format again.
This commit is contained in:
parent
445328ace6
commit
3a0c4fcc82
@ -49,7 +49,7 @@ enum CommentPlacement {
|
|||||||
commentBefore = 0, ///< a comment placed on the line before a value
|
commentBefore = 0, ///< a comment placed on the line before a value
|
||||||
commentAfterOnSameLine, ///< a comment just after a value on the same line
|
commentAfterOnSameLine, ///< a comment just after a value on the same line
|
||||||
commentAfter, ///< a comment on the line after a value (only make sense for
|
commentAfter, ///< a comment on the line after a value (only make sense for
|
||||||
///root value)
|
/// root value)
|
||||||
numberOfCommentPlacement
|
numberOfCommentPlacement
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -83,7 +83,8 @@ static inline char *duplicateStringValue(const char *value,
|
|||||||
length = Value::maxInt - 1;
|
length = Value::maxInt - 1;
|
||||||
|
|
||||||
char *newString = static_cast<char *>(malloc(length + 1));
|
char *newString = static_cast<char *>(malloc(length + 1));
|
||||||
JSON_ASSERT_MESSAGE(newString != 0, "in Json::Value::duplicateStringValue(): "
|
JSON_ASSERT_MESSAGE(newString != 0,
|
||||||
|
"in Json::Value::duplicateStringValue(): "
|
||||||
"Failed to allocate string value buffer");
|
"Failed to allocate string value buffer");
|
||||||
memcpy(newString, value, length);
|
memcpy(newString, value, length);
|
||||||
newString[length] = 0;
|
newString[length] = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user