Added void XMLPrinter::PushText( int64_t value ), which was declared but not implemented.

This commit is contained in:
Stefan Asbeck 2016-08-04 09:12:45 +02:00
parent 74d44acb17
commit e1a82c1a50
1 changed files with 7 additions and 0 deletions

View File

@ -2397,6 +2397,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];