diff options
Diffstat (limited to 'libcxx/src/debug.cpp')
-rw-r--r-- | libcxx/src/debug.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libcxx/src/debug.cpp b/libcxx/src/debug.cpp index 42e5edb3346..04d506341aa 100644 --- a/libcxx/src/debug.cpp +++ b/libcxx/src/debug.cpp @@ -7,7 +7,8 @@ // //===----------------------------------------------------------------------===// -#define _LIBCPP_DEBUG2 +#define _LIBCPP_DEBUG2 1 +#include "__config" #include "__debug" #include "functional" #include "algorithm" @@ -35,11 +36,6 @@ namespace { typedef mutex mutex_type; -// struct mutex_type -// { -// void lock() {} -// void unlock() {}; -// }; typedef lock_guard<mutex_type> WLock; typedef lock_guard<mutex_type> RLock; |