From 6cd04d2e1f2930d12d79cb85880e39d616e7de2f Mon Sep 17 00:00:00 2001 From: Gregor Thalhammer <gregor.thalhammer@gmail.com> Date: Wed, 26 Aug 2015 18:28:47 +0200 Subject: [PATCH] fix: include mingw.mutex.h in addition to <mutex> --- src/c_wrapper/debug.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/c_wrapper/debug.h b/src/c_wrapper/debug.h index d314da4f..f0700030 100644 --- a/src/c_wrapper/debug.h +++ b/src/c_wrapper/debug.h @@ -1,16 +1,11 @@ #include "wrap_cl.h" #include "function.h" #include <string.h> +#include <mutex> #ifdef __MINGW32__ - #include "mingw-std-threads/mingw.mutex.h" #include "mingw-std-threads/mingw.thread.h" - -#else - -#include <mutex> - #endif #ifndef __PYOPENCL_DEBUG_H -- GitLab