diff options
author | Sean Callanan <scallanan@apple.com> | 2010-09-23 03:01:22 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-09-23 03:01:22 +0000 |
commit | e2ef6e380bc7dc770baf2defa194602ae310d2a9 (patch) | |
tree | 7894638cb13b332aca732d728beb158d40b03719 /lldb/source/Expression/ClangExpressionDeclMap.cpp | |
parent | 002ad003a31d65de026ceebb54f2d1abca2d4f76 (diff) | |
download | bcm5719-llvm-e2ef6e380bc7dc770baf2defa194602ae310d2a9.tar.gz bcm5719-llvm-e2ef6e380bc7dc770baf2defa194602ae310d2a9.zip |
Updated to latest LLVM. Major LLVM changes:
- Sema is now exported (and there was much rejoicing.)
- Storage classes are now centrally defined.
Also fixed some bugs that the new LLVM picked up.
llvm-svn: 114622
Diffstat (limited to 'lldb/source/Expression/ClangExpressionDeclMap.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionDeclMap.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lldb/source/Expression/ClangExpressionDeclMap.cpp b/lldb/source/Expression/ClangExpressionDeclMap.cpp index bed235241ee..189249f5680 100644 --- a/lldb/source/Expression/ClangExpressionDeclMap.cpp +++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp @@ -13,6 +13,7 @@ // C++ Includes // Other libraries and framework includes // Project includes +#include "clang/AST/DeclarationName.h" #include "lldb/lldb-private.h" #include "lldb/Core/Address.h" #include "lldb/Core/Error.h" @@ -1205,12 +1206,12 @@ ClangExpressionDeclMap::AddOneType(NameSearchContext &context, false, ClangASTContext::GetTypeQualifiers(copied_type)); - ClangASTContext::AddMethodToCXXRecordType (parser_ast_context, - copied_type, - "___clang_expr", - method_type, - lldb::eAccessPublic, - false); + ClangASTContext::AddMethodToCXXRecordType(parser_ast_context, + copied_type, + "___clang_expr", + method_type, + lldb::eAccessPublic, + false); } context.AddTypeDecl(copied_type); |