1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-26 22:57:00 +02:00

[MinGW]FL build fix

This commit is contained in:
AlexVinS 2014-11-05 03:34:14 +03:00
parent 3e724bc564
commit 5e42fb8a2a

View File

@ -34,8 +34,10 @@
#elif defined FL_WINDOWS
#include <windows.h>
#include <winbase.h>
#ifndef __MINGW32__
#include <dbghelp.h>
#endif
#endif
#include <signal.h>
@ -108,7 +110,7 @@ namespace fl {
return btStream.str();
#elif defined FL_WINDOWS
#elif defined FL_WINDOWS && ! defined __MINGW32__
std::ostringstream btStream;
const int bufferSize = 30;
void* buffer[bufferSize];