diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2015-01-15 11:50:50 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2015-01-15 11:50:50 +0000 |
commit | a9a57804eaaa112618a711f84d98b125881e5da9 (patch) | |
tree | 1bbedf8861e43dc15694761f134d63f033cbf2fb /lldb/source/Expression/ASTResultSynthesizer.cpp | |
parent | 8c0809c7f8a6b8ae8d6b953f9a30a56ec584ff56 (diff) | |
download | bcm5719-llvm-a9a57804eaaa112618a711f84d98b125881e5da9.tar.gz bcm5719-llvm-a9a57804eaaa112618a711f84d98b125881e5da9.zip |
In commit clang r226096, DefinitionRequired has been removed. Do the same in lldb implementation
llvm-svn: 226162
Diffstat (limited to 'lldb/source/Expression/ASTResultSynthesizer.cpp')
-rw-r--r-- | lldb/source/Expression/ASTResultSynthesizer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/ASTResultSynthesizer.cpp b/lldb/source/Expression/ASTResultSynthesizer.cpp index 2f14721100b..c3d42cb49ec 100644 --- a/lldb/source/Expression/ASTResultSynthesizer.cpp +++ b/lldb/source/Expression/ASTResultSynthesizer.cpp @@ -480,10 +480,10 @@ ASTResultSynthesizer::CompleteTentativeDefinition(VarDecl *D) } void -ASTResultSynthesizer::HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired) +ASTResultSynthesizer::HandleVTable(CXXRecordDecl *RD) { if (m_passthrough) - m_passthrough->HandleVTable(RD, DefinitionRequired); + m_passthrough->HandleVTable(RD); } void |