1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-16 09:29:32 +00:00

Support inline, just always ignore it

This commit is contained in:
Nick Girardo 2023-10-31 21:08:42 -04:00
parent f381d23001
commit 859b3878d5

View File

@ -239,6 +239,10 @@ static TypeCode OptionalQualifiers (TypeCode Qualifiers, TypeCode Allowed)
}
break;
case TOK_INLINE:
Warning ("inline unsported, ignoring");
break;
case TOK_CDECL:
if (Allowed & T_QUAL_CDECL) {
if (Qualifiers & T_QUAL_CDECL) {