Skip to content

Commit 6ba900a

Browse files
authored
Update comment to not be specific for signed integers (#5987)
Following the change in #5980.
1 parent 742017c commit 6ba900a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchain/check/import_cpp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ static auto MapBuiltinType(Context& context, SemIR::LocId loc_id,
10881088
if (context.ast_context().hasSameType(qual_type, int_n_type)) {
10891089
TypeExpr type_expr =
10901090
MakeIntType(context, context.ints().Add(width), is_signed);
1091-
// Try to make sure signed integer of 32 or 64 bits are complete so we can
1091+
// Try to make sure integer types of 32 or 64 bits are complete so we can
10921092
// check against them when deciding whether we need to generate a thunk.
10931093
if (width == 32 || width == 64) {
10941094
SemIR::TypeId type_id = type_expr.type_id;

0 commit comments

Comments
 (0)