diff options
Diffstat (limited to 'lldb/tools/debugserver/source/PThreadEvent.h')
-rw-r--r-- | lldb/tools/debugserver/source/PThreadEvent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/PThreadEvent.h b/lldb/tools/debugserver/source/PThreadEvent.h index 5689cbfb9ca..f81798de5c7 100644 --- a/lldb/tools/debugserver/source/PThreadEvent.h +++ b/lldb/tools/debugserver/source/PThreadEvent.h @@ -54,8 +54,8 @@ protected: uint32_t m_reset_ack_mask; private: - PThreadEvent(const PThreadEvent &); // Outlaw copy constructor - PThreadEvent &operator=(const PThreadEvent &rhs); + PThreadEvent(const PThreadEvent &) = delete; + PThreadEvent &operator=(const PThreadEvent &rhs) = delete; }; #endif // #ifndef __PThreadEvent_h__ |