mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-26 08:33:14 +01:00
Fix TypeNull::toDecoBuffer prototype mismatch.
This shouldn't have caused any harm, as it currently only forwards to Type::toDecoBuffer anyway.
This commit is contained in:
@@ -8995,10 +8995,10 @@ MATCH TypeNull::implicitConvTo(Type *to)
|
||||
return MATCHnomatch;
|
||||
}
|
||||
|
||||
void TypeNull::toDecoBuffer(OutBuffer *buf, int flag)
|
||||
void TypeNull::toDecoBuffer(OutBuffer *buf, int flag, bool mangle)
|
||||
{
|
||||
//tvoidptr->toDecoBuffer(buf, flag);
|
||||
Type::toDecoBuffer(buf, flag);
|
||||
Type::toDecoBuffer(buf, flag, mangle);
|
||||
}
|
||||
|
||||
void TypeNull::toCBuffer(OutBuffer *buf, Identifier *ident, HdrGenState *hgs)
|
||||
|
||||
@@ -1010,7 +1010,7 @@ struct TypeNull : Type
|
||||
TypeNull();
|
||||
|
||||
Type *syntaxCopy();
|
||||
void toDecoBuffer(OutBuffer *buf, int flag);
|
||||
void toDecoBuffer(OutBuffer *buf, int flag, bool mangle);
|
||||
MATCH implicitConvTo(Type *to);
|
||||
|
||||
void toCBuffer(OutBuffer *buf, Identifier *ident, HdrGenState *hgs);
|
||||
|
||||
Reference in New Issue
Block a user