forked from OSchip/llvm-project
In commit clang r226096, DefinitionRequired has been removed. Do the same in lldb implementation
llvm-svn: 226162
This commit is contained in:
parent
8c0809c7f8
commit
a9a57804ea
|
|
@ -91,7 +91,7 @@ public:
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
/// Passthrough stub
|
/// Passthrough stub
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
void HandleVTable(clang::CXXRecordDecl *RD, bool DefinitionRequired);
|
void HandleVTable(clang::CXXRecordDecl *RD);
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
/// Passthrough stub
|
/// Passthrough stub
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ public:
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
/// Passthrough stub
|
/// Passthrough stub
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
void HandleVTable(clang::CXXRecordDecl *RD, bool DefinitionRequired);
|
void HandleVTable(clang::CXXRecordDecl *RD);
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
/// Passthrough stub
|
/// Passthrough stub
|
||||||
|
|
|
||||||
|
|
@ -480,10 +480,10 @@ ASTResultSynthesizer::CompleteTentativeDefinition(VarDecl *D)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
ASTResultSynthesizer::HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired)
|
ASTResultSynthesizer::HandleVTable(CXXRecordDecl *RD)
|
||||||
{
|
{
|
||||||
if (m_passthrough)
|
if (m_passthrough)
|
||||||
m_passthrough->HandleVTable(RD, DefinitionRequired);
|
m_passthrough->HandleVTable(RD);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
|
|
@ -186,10 +186,10 @@ ASTStructExtractor::CompleteTentativeDefinition(VarDecl *D)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
ASTStructExtractor::HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired)
|
ASTStructExtractor::HandleVTable(CXXRecordDecl *RD)
|
||||||
{
|
{
|
||||||
if (m_passthrough)
|
if (m_passthrough)
|
||||||
m_passthrough->HandleVTable(RD, DefinitionRequired);
|
m_passthrough->HandleVTable(RD);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue