mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-15 15:16:47 +02:00
rm trailing newlines for *all* comments
This will make it easier to fix newlines consistently.
This commit is contained in:
@@ -432,9 +432,11 @@ Json::Value obj_value(Json::objectValue); // {}
|
||||
// EnumValues enumValues() const;
|
||||
//# endif
|
||||
|
||||
/// Comments must be //... or /* ... */
|
||||
/// \deprecated Always pass len.
|
||||
void setComment(const char* comment, CommentPlacement placement);
|
||||
/// Comments must be //... or /* ... */
|
||||
void setComment(const char* comment, size_t len, CommentPlacement placement);
|
||||
/// Comments must be //... or /* ... */
|
||||
void setComment(const std::string& comment, CommentPlacement placement);
|
||||
bool hasComment(CommentPlacement placement) const;
|
||||
/// Include delimiters and embedded newlines.
|
||||
@@ -477,7 +479,7 @@ private:
|
||||
CommentInfo();
|
||||
~CommentInfo();
|
||||
|
||||
void setComment(const char* text);
|
||||
void setComment(const char* text, size_t len);
|
||||
|
||||
char* comment_;
|
||||
};
|
||||
|
Reference in New Issue
Block a user