diff options
Diffstat (limited to 'lldb/include/lldb/Symbol/DebugMacros.h')
-rw-r--r-- | lldb/include/lldb/Symbol/DebugMacros.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/include/lldb/Symbol/DebugMacros.h b/lldb/include/lldb/Symbol/DebugMacros.h index da46c8b23c1d..0ea70f5deb84 100644 --- a/lldb/include/lldb/Symbol/DebugMacros.h +++ b/lldb/include/lldb/Symbol/DebugMacros.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef liblldb_DebugMacros_h_ -#define liblldb_DebugMacros_h_ +#ifndef LLDB_SYMBOL_DEBUGMACROS_H +#define LLDB_SYMBOL_DEBUGMACROS_H #include <memory> #include <vector> @@ -27,7 +27,6 @@ public: INVALID, DEFINE, UNDEF, START_FILE, END_FILE, INDIRECT }; -public: static DebugMacroEntry CreateDefineEntry(uint32_t line, const char *str); static DebugMacroEntry CreateUndefEntry(uint32_t line, const char *str); @@ -89,11 +88,12 @@ public: } private: - DISALLOW_COPY_AND_ASSIGN(DebugMacros); + DebugMacros(const DebugMacros &) = delete; + const DebugMacros &operator=(const DebugMacros &) = delete; std::vector<DebugMacroEntry> m_macro_entries; }; } // namespace lldb_private -#endif // liblldb_DebugMacros_h_ +#endif // LLDB_SYMBOL_DEBUGMACROS_H |