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

This commit is contained in:
Alexander Gessler
2016-05-05 19:05:02 +02:00
committed by Alexander Gessler
parent c80fe16323
commit f5327a99ba

View File

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