Merge pull request #459 from Elbrasch/master

Added void XMLPrinter::PushText( int64_t value ), which was declared …
This commit is contained in:
Lee Thomason 2016-08-05 13:10:16 -07:00 committed by GitHub
commit 75c8f40640
1 changed files with 7 additions and 0 deletions

View File

@ -2398,6 +2398,13 @@ void XMLPrinter::PushText( const char* text, bool cdata )
}
}
void XMLPrinter::PushText( int64_t value )
{
char buf[BUF_SIZE];
XMLUtil::ToStr( value, buf, BUF_SIZE );
PushText( buf, false );
}
void XMLPrinter::PushText( int value )
{
char buf[BUF_SIZE];