mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-04-28 22:21:31 +03:00
Removed KDevelop3 project files, CMake can generate them just fine!
Fixed function literals in static initializers. Changed alignment of delegates from 2*PTRSIZE to just PTRSIZE. Changed errors to go to stderr instead of stdout. Fairly major rewriting of struct/union/class handling, STILL A BIT BUGGY !!!
This commit is contained in:
parent
049e24cef8
commit
f46f865375
47 changed files with 2103 additions and 2398 deletions
|
@ -21,9 +21,6 @@ IrType::IrType(const IrType& s)
|
|||
{
|
||||
assert(list.insert(this).second);
|
||||
type = s.type;
|
||||
#if OPAQUE_VTBLS
|
||||
vtblType = s.type;
|
||||
#endif
|
||||
}
|
||||
|
||||
IrType::~IrType()
|
||||
|
@ -34,7 +31,4 @@ IrType::~IrType()
|
|||
void IrType::reset()
|
||||
{
|
||||
type = NULL;
|
||||
#if OPAQUE_VTBLS
|
||||
vtblType = NULL;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue