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:
David Nadlinger
2012-03-13 10:48:17 +01:00
parent 43667e1807
commit 1a17b17a11
2 changed files with 3 additions and 3 deletions

View File

@@ -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)

View File

@@ -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);