summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/macosx/cfcpp
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/source/Host/macosx/cfcpp
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/source/Host/macosx/cfcpp')
-rw-r--r--lldb/source/Host/macosx/cfcpp/CFCBundle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Host/macosx/cfcpp/CFCBundle.h b/lldb/source/Host/macosx/cfcpp/CFCBundle.h
index 9ff58fba854..014552ab18f 100644
--- a/lldb/source/Host/macosx/cfcpp/CFCBundle.h
+++ b/lldb/source/Host/macosx/cfcpp/CFCBundle.h
@@ -31,9 +31,9 @@ public:
private:
// Disallow copy and assignment constructors
- CFCBundle(const CFCBundle &);
+ CFCBundle(const CFCBundle &) = delete;
- const CFCBundle &operator=(const CFCBundle &);
+ const CFCBundle &operator=(const CFCBundle &) = delete;
};
#endif // #ifndef CoreFoundationCPP_CFBundle_h_
OpenPOWER on IntegriCloud