X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fsemaphore.h;h=4b229450565aca9e637887b4662c7d1810165d76;hb=9b38e20254913629a0db40e8eb8e1c42e1728e41;hp=61118c734febffa1e5da463e5ead628074a144ad;hpb=c7afef88380ebebc8c2b04e48664d73281ec8848;p=libs%2Fcore.git diff --git a/source/core/semaphore.h b/source/core/semaphore.h index 61118c7..4b22945 100644 --- a/source/core/semaphore.h +++ b/source/core/semaphore.h @@ -2,16 +2,16 @@ #define MSP_CORE_SEMAPHORE_H_ #include -#include "mutex.h" +#include "noncopyable.h" namespace Msp { -class Semaphore +class Semaphore: private NonCopyable { private: struct Private; - Private *priv; + Private *priv = 0; public: Semaphore(unsigned);