From 220cc759df24d938fcc125818365834ff7e9370f Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Wed, 14 Sep 2016 13:33:31 +0000 Subject: Remove all usage of boost::noncopyable. --- fastos/src/vespa/fastos/thread.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'fastos/src') diff --git a/fastos/src/vespa/fastos/thread.h b/fastos/src/vespa/fastos/thread.h index 6eba3470176..31a5fce32fa 100644 --- a/fastos/src/vespa/fastos/thread.h +++ b/fastos/src/vespa/fastos/thread.h @@ -461,15 +461,13 @@ public: */ class FastOS_Runnable { -private: - FastOS_Runnable(const FastOS_Runnable&); - FastOS_Runnable& operator=(const FastOS_Runnable&); - protected: friend class FastOS_ThreadInterface; FastOS_ThreadInterface *_thread; public: + FastOS_Runnable(const FastOS_Runnable&) = delete; + FastOS_Runnable& operator=(const FastOS_Runnable&) = delete; FastOS_Runnable(); virtual ~FastOS_Runnable(); -- cgit v1.2.3