In commit clang r226096, DefinitionRequired has been removed. Do the same in lldb implementation

llvm-svn: 226162
This commit is contained in:
Sylvestre Ledru
2015-01-15 11:50:50 +00:00
parent 8c0809c7f8
commit a9a57804ea
4 changed files with 6 additions and 6 deletions

View File

@@ -186,10 +186,10 @@ ASTStructExtractor::CompleteTentativeDefinition(VarDecl *D)
}
void
ASTStructExtractor::HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired)
ASTStructExtractor::HandleVTable(CXXRecordDecl *RD)
{
if (m_passthrough)
m_passthrough->HandleVTable(RD, DefinitionRequired);
m_passthrough->HandleVTable(RD);
}
void