summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-09-14 13:33:31 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-09-14 13:33:31 +0000
commit220cc759df24d938fcc125818365834ff7e9370f (patch)
treeff3e2e77561937556a59dcc20dfb90bf79aa01ad /fastos
parent060953cb4a5b15cf1465094424f39f3829512671 (diff)
Remove all usage of boost::noncopyable.
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/thread.h6
1 files changed, 2 insertions, 4 deletions
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();