Merge pull request #76 from akien-mga/fix-win32-mingw

Win32: Fix build with GCC (MinGW)
This commit is contained in:
Rich Geldreich
2020-01-02 09:54:10 -08:00
committed by GitHub

View File

@@ -23,7 +23,7 @@
#include <thread>
#include <unordered_map>
#ifndef _WIN32
#if !defined(_WIN32) || defined(__MINGW32__)
#include <libgen.h>
#endif