Browse Source

Add using namespace std on top of assxml exporter so vsnprintf is found no matter where it lives.

Alexander Gessler 9 years ago
parent
commit
f5327a99ba
1 changed files with 1 additions and 0 deletions
  1. 1 0
      code/AssxmlExporter.cpp

+ 1 - 0
code/AssxmlExporter.cpp

@@ -67,6 +67,7 @@ namespace AssxmlExport  {
 
 // -----------------------------------------------------------------------------------
 static int ioprintf( IOStream * io, const char *format, ... ) {
+	using namespace std;
     if ( nullptr == io ) {
         return -1;
     }