commit | 75c8f40640a9014e98498aee7ad6775d58b39dc6 | [log] [tgz] |
---|---|---|
author | Lee Thomason <leethomason@gmail.com> | Fri Aug 05 13:10:16 2016 -0700 |
committer | GitHub <noreply@github.com> | Fri Aug 05 13:10:16 2016 -0700 |
tree | 6ea198c223e67368ec7981b1000c666ecf306e3e | |
parent | 1043f6feedc75aae4c8854e9895b3b10b67e5986 [diff] | |
parent | e1a82c1a500e8b558c938016ba40e96e43f04aaa [diff] |
Merge pull request #459 from Elbrasch/master Added void XMLPrinter::PushText( int64_t value ), which was declared …
diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 1b46071..1717e0a 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp
@@ -2398,6 +2398,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];