fixed compiler warning

This commit is contained in:
Christopher Dunn 2007-03-23 07:16:59 +00:00
parent ca21256395
commit 0c498695a7

View File

@ -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 );
} }