diff options
author | Sean Callanan <scallanan@apple.com> | 2011-01-27 04:42:51 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-01-27 04:42:51 +0000 |
commit | 78e3760fde9583ed17c9bed10e0a718bca07785f (patch) | |
tree | e2d30eb1180c2f67fa2dd98e824a60ef4d5d7889 /lldb/source/Expression/ASTResultSynthesizer.cpp | |
parent | f3e20b9f0fffa72c4b532c04160e5e2dfa35d582 (diff) | |
download | bcm5719-llvm-78e3760fde9583ed17c9bed10e0a718bca07785f.tar.gz bcm5719-llvm-78e3760fde9583ed17c9bed10e0a718bca07785f.zip |
Updated Clang to a version that supports propagating
the "virtual" flag when importing a C++ function
declaration. Made changes to LLDB to support other
changes in Clang.
llvm-svn: 124355
Diffstat (limited to 'lldb/source/Expression/ASTResultSynthesizer.cpp')
-rw-r--r-- | lldb/source/Expression/ASTResultSynthesizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ASTResultSynthesizer.cpp b/lldb/source/Expression/ASTResultSynthesizer.cpp index e581b965fea..7dd1ab45c8b 100644 --- a/lldb/source/Expression/ASTResultSynthesizer.cpp +++ b/lldb/source/Expression/ASTResultSynthesizer.cpp @@ -290,7 +290,7 @@ ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body, (last_expr->getObjectKind() == OK_Ordinary); QualType expr_qual_type = last_expr->getType(); - clang::Type *expr_type = expr_qual_type.getTypePtr(); + const clang::Type *expr_type = expr_qual_type.getTypePtr(); if (!expr_type) return false; |