#1291 Thank you to T Modes for reporting this and providing this patch.

This commit is contained in:
Robin Mills 2017-04-23 16:28:01 +00:00
parent 73572aa54d
commit fb24a572c6
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,6 @@
///// Start of Visual Studio Support /////
#ifdef _MSC_VER
#include <windows.h>
#define _MSC_VER_2015 1900
#define _MSC_VER_2013 1800

View File

@ -22,7 +22,9 @@
#ifndef RW_LOCK_HPP
#define RW_LOCK_HPP
#ifndef _MSC_VER
#ifdef _MSC_VER
#include <windows.h>
#else
#include <pthread.h>
#endif