mirror of https://github.com/AxioDL/tinyxml2.git
Added void XMLPrinter::PushText( int64_t value ), which was declared but not implemented.
This commit is contained in:
parent
74d44acb17
commit
e1a82c1a50
|
@ -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 )
|
void XMLPrinter::PushText( int value )
|
||||||
{
|
{
|
||||||
char buf[BUF_SIZE];
|
char buf[BUF_SIZE];
|
||||||
|
|
Loading…
Reference in New Issue