stage1: fix typo in analyze.cpp (#12077)

accomodate -> accommodate
This commit is contained in:
Ikko Ashimine 2022-07-12 01:30:28 +09:00 committed by GitHub
parent 3e2e6c108a
commit ade9bd9287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2781,7 +2781,7 @@ static Error type_is_valid_extern_enum_tag(CodeGen *g, ZigType *ty, bool *result
// According to the ANSI C standard the enumeration type should be either a
// signed char, a signed integer or an unsigned one. But GCC/Clang allow
// other integral types as a compiler extension so let's accomodate them
// other integral types as a compiler extension so let's accommodate them
// aswell.
return type_allowed_in_extern(g, ty, ExternPositionOther, result);
}