From f5327a99badf584fa37bb124194926e6b88a670f Mon Sep 17 00:00:00 2001 From: Alexander Gessler Date: Thu, 5 May 2016 19:05:02 +0200 Subject: [PATCH] Add using namespace std on top of assxml exporter so vsnprintf is found no matter where it lives. --- code/AssxmlExporter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/code/AssxmlExporter.cpp b/code/AssxmlExporter.cpp index 765a8f88b..bcf805501 100644 --- a/code/AssxmlExporter.cpp +++ b/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; }