mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-02 08:01:11 +03:00
Complete IrStruct->IrAggr rename.
This commit is contained in:
parent
b15588ed15
commit
1215ffacd3
11 changed files with 36 additions and 36 deletions
|
@ -26,7 +26,7 @@ RTTIBuilder::RTTIBuilder(AggregateDeclaration* base_class)
|
|||
base = base_class;
|
||||
basetype = static_cast<TypeClass*>(base->type);
|
||||
|
||||
baseir = base->ir.irStruct;
|
||||
baseir = base->ir.irAggr;
|
||||
assert(baseir && "no IrStruct for TypeInfo base class");
|
||||
|
||||
if (base->isClassDeclaration()) {
|
||||
|
@ -59,7 +59,7 @@ void RTTIBuilder::push_typeinfo(Type* t)
|
|||
|
||||
void RTTIBuilder::push_classinfo(ClassDeclaration* cd)
|
||||
{
|
||||
inits.push_back(cd->ir.irStruct->getClassInfoSymbol());
|
||||
inits.push_back(cd->ir.irAggr->getClassInfoSymbol());
|
||||
}
|
||||
|
||||
void RTTIBuilder::push_string(const char* str)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue