Urk, forgot to build this one after merging and goofed a bit.
diff --git a/tinyxml2.cpp b/tinyxml2.cpp
index 6081856..fe5b437 100755
--- a/tinyxml2.cpp
+++ b/tinyxml2.cpp
@@ -1325,7 +1325,15 @@
 }

 

 

-void XMLElement::SetText( double v ) 

+void XMLElement::SetText( double v )

+{

+    char buf[BUF_SIZE];

+    XMLUtil::ToStr( v, buf, BUF_SIZE );

+    SetText( buf );

+}

+

+

+void XMLElement::SetText( long long v )

 {

     char buf[BUF_SIZE];

     XMLUtil::ToStr( v, buf, BUF_SIZE );