1
0
mirror of https://github.com/leethomason/tinyxml2.git synced 2026-07-28 22:52:59 +04:00

Urk, forgot to build this one after merging and goofed a bit.

This commit is contained in:
Uli Kusterer
2014-01-25 03:37:16 +01:00
parent 2861a7e63a
commit 35ce309f73
2 changed files with 14 additions and 20 deletions
+9 -1
View File
@@ -1325,7 +1325,15 @@ void XMLElement::SetText( float v )
}
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 );