commit | e1a82c1a500e8b558c938016ba40e96e43f04aaa | [log] [tgz] |
---|---|---|
author | Stefan Asbeck <stefan.asbeck@wintegral.net> | Thu Aug 04 09:12:45 2016 +0200 |
committer | Stefan Asbeck <stefan.asbeck@wintegral.net> | Thu Aug 04 09:12:45 2016 +0200 |
tree | 3bec0f35c234669c578d971410fcd21a2d910583 | |
parent | 74d44acb176f8510abf28ee0a70961eb26631988 [diff] [blame] |
Added void XMLPrinter::PushText( int64_t value ), which was declared but not implemented.
diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 9d6be5c..c74950f 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp
@@ -2397,6 +2397,13 @@ } } +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];