mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2024-12-12 18:10:27 +01:00
fixed compiler warning
This commit is contained in:
parent
ca21256395
commit
0c498695a7
@ -151,7 +151,7 @@ Value::CommentInfo::setComment( const char *text )
|
|||||||
if ( comment_ )
|
if ( comment_ )
|
||||||
valueAllocator()->releaseStringValue( comment_ );
|
valueAllocator()->releaseStringValue( comment_ );
|
||||||
JSON_ASSERT( text );
|
JSON_ASSERT( text );
|
||||||
JSON_ASSERT_MESSAGE( text[0]==NULL || text[0]=='/', "Comments must start with /");
|
JSON_ASSERT_MESSAGE( text[0]=='\0' || text[0]=='/', "Comments must start with /");
|
||||||
// It seems that /**/ style comments are acceptable as well.
|
// It seems that /**/ style comments are acceptable as well.
|
||||||
comment_ = valueAllocator()->duplicateStringValue( text );
|
comment_ = valueAllocator()->duplicateStringValue( text );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user