summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mutex.h10
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