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

pull/877/head
Alexander Gessler 2016-05-05 19:05:02 +02:00 committed by Alexander Gessler
parent c80fe16323
commit f5327a99ba
1 changed files with 1 additions and 0 deletions

View File

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