diff options
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h b/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h index d429e8c3855f..3787c572d45b 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h +++ b/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h @@ -6,9 +6,10 @@ // //===----------------------------------------------------------------------===// -#ifndef liblldb_ASTUtils_h_ -#define liblldb_ASTUtils_h_ +#ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_ASTUTILS_H +#define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_ASTUTILS_H +#include "clang/Basic/Module.h" #include "clang/Sema/Lookup.h" #include "clang/Sema/MultiplexExternalSemaSource.h" #include "clang/Sema/Sema.h" @@ -71,7 +72,7 @@ public: return m_Source->getModule(ID); } - llvm::Optional<ASTSourceDescriptor> + llvm::Optional<clang::ASTSourceDescriptor> getSourceDescriptor(unsigned ID) override { return m_Source->getSourceDescriptor(ID); } @@ -576,4 +577,4 @@ public: }; } // namespace lldb_private -#endif // liblldb_ASTUtils_h_ +#endif // LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_ASTUTILS_H |