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

@ -91,7 +91,7 @@ public:
//----------------------------------------------------------------------
/// Passthrough stub
//----------------------------------------------------------------------
void HandleVTable(clang::CXXRecordDecl *RD, bool DefinitionRequired);
void HandleVTable(clang::CXXRecordDecl *RD);
//----------------------------------------------------------------------
/// Passthrough stub

View File

@ -99,7 +99,7 @@ public:
//----------------------------------------------------------------------
/// Passthrough stub
//----------------------------------------------------------------------
void HandleVTable(clang::CXXRecordDecl *RD, bool DefinitionRequired);
void HandleVTable(clang::CXXRecordDecl *RD);
//----------------------------------------------------------------------
/// Passthrough stub

View File

@ -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

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