fix compilation on Windows

This commit is contained in:
Vincent Torri 2020-11-05 12:25:47 +01:00 committed by Hermet Park
parent 8243b3a1f5
commit 5a85b40f6c

View file

@ -23,9 +23,9 @@
#include <ctype.h>
#include <cstring>
#ifdef _WIN32
# include <malloc.h>
#include <malloc.h>
#else
# include <alloca.h>
#include <alloca.h>
#endif
#include "tvgXmlParser.h"