aboutsummaryrefslogtreecommitdiff
path: root/lldb/include/lldb/Symbol/DeclVendor.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/Symbol/DeclVendor.h')
-rw-r--r--lldb/include/lldb/Symbol/DeclVendor.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/include/lldb/Symbol/DeclVendor.h b/lldb/include/lldb/Symbol/DeclVendor.h
index 748c0c8ac961..67dcaf1734bd 100644
--- a/lldb/include/lldb/Symbol/DeclVendor.h
+++ b/lldb/include/lldb/Symbol/DeclVendor.h
@@ -6,8 +6,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef liblldb_DeclVendor_h_
-#define liblldb_DeclVendor_h_
+#ifndef LLDB_SYMBOL_DECLVENDOR_H
+#define LLDB_SYMBOL_DECLVENDOR_H
#include "lldb/lldb-defines.h"
@@ -67,7 +67,8 @@ public:
private:
// For DeclVendor only
- DISALLOW_COPY_AND_ASSIGN(DeclVendor);
+ DeclVendor(const DeclVendor &) = delete;
+ const DeclVendor &operator=(const DeclVendor &) = delete;
const DeclVendorKind m_kind;
};