diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-01-23 22:59:28 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-01-23 22:59:28 +0100 | 
| commit | 3d06f01a8c2767dcf1d6dfcab7d89b2a9a11571d (patch) | |
| tree | 86cc3a2b7d80b28630359ef1447f266eaf54bf21 /src | |
| parent | b359b2248237868732a605096ca7b3f4376d6774 (diff) | |
Possible fix to missing std::mutex in mingw.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mutex.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/mutex.h b/src/mutex.h index 9364515..92c9f53 100644 --- a/src/mutex.h +++ b/src/mutex.h @@ -47,11 +47,11 @@ private:  namespace std {  	class mutex  		: public Mutex { -	public: -		bool try_lock() -		{ -			return trylock(); -		} +//	public: +//		bool try_lock() +//		{ +//			return trylock(); +//		}  	};  }  #endif | 
