diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-15 05:31:14 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-15 05:31:14 +0000 |
| commit | c18740976e53e847892ffcbc5278c4c7789a1289 (patch) | |
| tree | de8df82e7fbc4ac01d5e73c4e438ceca83ec618e /lldb/source/Host/macosx/cfcpp | |
| parent | c31a45e62a2a4212a9bb23a7de20d4023e333dac (diff) | |
| download | bcm5719-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.h | 4 |
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_ |

