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];