* Fixed XMLSerializer to compile with gcc

* Other small fixes
* Added chrsch build profile
This commit is contained in:
schuellc
2013-05-17 13:48:30 +02:00
parent 65febf9268
commit 32c1736aaf
10 changed files with 365 additions and 294 deletions
+1 -1
View File
@@ -431,7 +431,7 @@ void XMLUtil::ToStr( float v, char* buffer, int bufferSize )
void XMLUtil::ToStr( double v, char* buffer, int bufferSize )
{
TIXML_SNPRINTF( buffer, bufferSize, "%.15f", v );
TIXML_SNPRINTF( buffer, bufferSize, "%.15e", v );
}