move debug variable under ifndef

main
Praveen Rao 9 years ago
parent a1d37602a0
commit 91c041e578
  1. 7
      port/win/port_win.h

@ -114,8 +114,11 @@ class CondVar;
class Mutex {
public:
/* implicit */ Mutex(bool adaptive = false) : locked_(false) {
}
/* implicit */ Mutex(bool adaptive = false)
#ifndef NDEBUG
: locked_(false)
#endif
{ }
~Mutex();

Loading…
Cancel
Save