Add using namespace std on top of assxml exporter so vsnprintf is found no matter where it lives.
parent
c80fe16323
commit
f5327a99ba
|
@ -67,6 +67,7 @@ namespace AssxmlExport {
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------
|
||||||
static int ioprintf( IOStream * io, const char *format, ... ) {
|
static int ioprintf( IOStream * io, const char *format, ... ) {
|
||||||
|
using namespace std;
|
||||||
if ( nullptr == io ) {
|
if ( nullptr == io ) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue