summaryrefslogtreecommitdiffstats
path: root/lldb/tools/debugserver/source/MacOSX
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-05-15 05:31:14 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-05-15 05:31:14 +0000
commitc18740976e53e847892ffcbc5278c4c7789a1289 (patch)
treede8df82e7fbc4ac01d5e73c4e438ceca83ec618e /lldb/tools/debugserver/source/MacOSX
parentc31a45e62a2a4212a9bb23a7de20d4023e333dac (diff)
downloadbcm5719-llvm-c18740976e53e847892ffcbc5278c4c7789a1289.tar.gz
bcm5719-llvm-c18740976e53e847892ffcbc5278c4c7789a1289.zip
Mark private unimplemented functions as deleted
Applies modernize-use-equals-delete to the LLDB code base and removes the now redundant comments. llvm-svn: 360751
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX')
-rw-r--r--lldb/tools/debugserver/source/MacOSX/MachTask.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachTask.h b/lldb/tools/debugserver/source/MacOSX/MachTask.h
index a933bffc8a0..c975e15a555 100644
--- a/lldb/tools/debugserver/source/MacOSX/MachTask.h
+++ b/lldb/tools/debugserver/source/MacOSX/MachTask.h
@@ -102,8 +102,8 @@ protected:
allocation_collection m_allocations;
private:
- MachTask(const MachTask &); // Outlaw
- MachTask &operator=(const MachTask &rhs); // Outlaw
+ MachTask(const MachTask &) = delete;
+ MachTask &operator=(const MachTask &rhs) = delete;
};
#endif // __MachTask_h__
OpenPOWER on IntegriCloud