diff options
Diffstat (limited to 'raul/Semaphore.hpp')
-rw-r--r-- | raul/Semaphore.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/raul/Semaphore.hpp b/raul/Semaphore.hpp index 63738c2..7df1817 100644 --- a/raul/Semaphore.hpp +++ b/raul/Semaphore.hpp @@ -25,7 +25,7 @@ #include <semaphore.h> #endif -#include <boost/utility.hpp> +#include "raul/Noncopyable.hpp" namespace Raul { @@ -33,7 +33,7 @@ namespace Raul { * * \ingroup raul */ -class Semaphore : boost::noncopyable { +class Semaphore : Noncopyable { public: inline Semaphore(unsigned int initial) { #ifdef __APPLE__ |