diff options
Diffstat (limited to 'lldb/source')
-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_ |