diff options
Diffstat (limited to 'common/os/Mutex.h')
-rw-r--r-- | common/os/Mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/os/Mutex.h b/common/os/Mutex.h index 2a54b205..63c7e0cc 100644 --- a/common/os/Mutex.h +++ b/common/os/Mutex.h @@ -31,7 +31,7 @@ namespace os { void unlock(); private: - friend Condition; + friend class Condition; void* systemMutex; }; |