diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-07-26 19:36:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-07-26 19:36:28 +0000 |
commit | cfca06d7963fa0909f90483b42a6d7d194d01e08 (patch) | |
tree | 209fb2a2d68f8f277793fc8df46c753d31bc853b /lldb/include/lldb/Host/HostNativeProcessBase.h | |
parent | 706b4fc47bbc608932d3b491ae19a3b9cde9497b (diff) |
Notes
Diffstat (limited to 'lldb/include/lldb/Host/HostNativeProcessBase.h')
-rw-r--r-- | lldb/include/lldb/Host/HostNativeProcessBase.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lldb/include/lldb/Host/HostNativeProcessBase.h b/lldb/include/lldb/Host/HostNativeProcessBase.h index aaa517d53217..642c63443c20 100644 --- a/lldb/include/lldb/Host/HostNativeProcessBase.h +++ b/lldb/include/lldb/Host/HostNativeProcessBase.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef lldb_Host_HostNativeProcessBase_h_ -#define lldb_Host_HostNativeProcessBase_h_ +#ifndef LLDB_HOST_HOSTNATIVEPROCESSBASE_H +#define LLDB_HOST_HOSTNATIVEPROCESSBASE_H #include "lldb/Host/HostProcess.h" #include "lldb/Utility/Status.h" @@ -19,7 +19,9 @@ namespace lldb_private { class HostThread; class HostNativeProcessBase { - DISALLOW_COPY_AND_ASSIGN(HostNativeProcessBase); + HostNativeProcessBase(const HostNativeProcessBase &) = delete; + const HostNativeProcessBase & + operator=(const HostNativeProcessBase &) = delete; public: HostNativeProcessBase() : m_process(LLDB_INVALID_PROCESS) {} |