mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-16 04:43:14 +01:00
[svn r190] Fixed array concatenation for some broken cases.
Added a sanity check for the Dsymbol state set.
This commit is contained in:
@@ -13,13 +13,13 @@ void IrType::resetAll()
|
||||
|
||||
IrType::IrType()
|
||||
{
|
||||
list.insert(this);
|
||||
assert(list.insert(this).second);
|
||||
reset();
|
||||
}
|
||||
|
||||
IrType::IrType(const IrType& s)
|
||||
{
|
||||
list.insert(this);
|
||||
assert(list.insert(this).second);
|
||||
type = s.type;
|
||||
vtblType = s.type;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user