summaryrefslogtreecommitdiff
path: root/games/dangerdeep/files/patch-src__mutex.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--games/dangerdeep/files/patch-src__mutex.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/games/dangerdeep/files/patch-src__mutex.h b/games/dangerdeep/files/patch-src__mutex.h
deleted file mode 100644
index e769fdb33b8d..000000000000
--- a/games/dangerdeep/files/patch-src__mutex.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- ./src/mutex.h.orig 2007-06-11 11:16:23.000000000 -0400
-+++ ./src/mutex.h 2014-08-11 09:59:15.000000000 -0400
-@@ -58,7 +58,7 @@
- class mutex_locker
- {
- protected:
-- mutex& mymutex;
-+ ::mutex& mymutex;
- private:
- mutex_locker();
- mutex_locker(const mutex_locker& );
-@@ -67,7 +67,7 @@
- /// create mutex locker
- ///@param mtx - mutex to lock
- ///@note will instantly lock the mutex that was given as parameter
-- mutex_locker(mutex& mtx) : mymutex(mtx) { mymutex.lock(); }
-+ mutex_locker(::mutex& mtx) : mymutex(mtx) { mymutex.lock(); }
-
- /// destroy mutex locker
- ///@note will unlock the mutex that was given to the constructor