Skip to content

Commit

Permalink
Merge pull request #469 from Trebgarta/master
Browse files Browse the repository at this point in the history
Bool true/false rather than 0/1 : #399
  • Loading branch information
leethomason committed Aug 29, 2016
2 parents a369d4b + 1f212f3 commit 4fe8c10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tinyxml2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ void XMLUtil::ToStr( unsigned v, char* buffer, int bufferSize )

void XMLUtil::ToStr( bool v, char* buffer, int bufferSize )
{
TIXML_SNPRINTF( buffer, bufferSize, "%d", v ? 1 : 0 );
TIXML_SNPRINTF( buffer, bufferSize, "%s", v ? "true" : "false" );
}

/*
Expand Down
4 changes: 2 additions & 2 deletions xmltest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ int main( int argc, const char ** argv )
{
XMLPrinter streamer( 0, true );
doc->Print( &streamer );
XMLTest( "Compact mode", "<element><sub attrib=\"1\"/><sub/></element>", streamer.CStr(), false );
XMLTest( "Compact mode", "<element><sub attrib=\"true\"/><sub/></element>", streamer.CStr(), false );
}
doc->SaveFile( "./resources/out/pretty.xml" );
doc->SaveFile( "./resources/out/compact.xml", true );
Expand Down Expand Up @@ -679,7 +679,7 @@ int main( int argc, const char ** argv )
XMLTest( "SetText types", "1", element->GetText() );

element->SetText( true );
XMLTest( "SetText types", "1", element->GetText() ); // TODO: should be 'true'?
XMLTest( "SetText types", "true", element->GetText() );

element->SetText( 1.5f );
XMLTest( "SetText types", "1.5", element->GetText() );
Expand Down

0 comments on commit 4fe8c10

Please sign in to comment.