fixed warnings for windows mingw

This commit is contained in:
CPunch 2020-08-19 15:42:44 -05:00
parent ba81db97ef
commit 94cb89dd6b
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@
#include <list>
#include <queue>
#ifdef __MINGW32__
#if defined(__MINGW32__) && !defined(_GLIBCXX_HAS_GTHREADS)
#include "mingw/mingw.mutex.h"
#else
#include <mutex>

View File

@ -1,6 +1,6 @@
#include "CNShared.hpp"
#ifdef __MINGW32__
#if defined(__MINGW32__) && !defined(_GLIBCXX_HAS_GTHREADS)
#include "mingw/mingw.mutex.h"
#else
#include <mutex>

View File

@ -5,7 +5,7 @@
#include "settings.hpp"
#ifdef __MINGW32__
#if defined(__MINGW32__) && !defined(_GLIBCXX_HAS_GTHREADS)
#include "mingw/mingw.thread.h"
#else
#include <thread>