From 6ba900ab97e02a34c62ab534929eb107684e3f4b Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Tue, 26 Aug 2025 23:49:31 +0200 Subject: [PATCH] Update comment to not be specific for signed integers (#5987) Following the change in #5980. --- toolchain/check/import_cpp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/check/import_cpp.cpp b/toolchain/check/import_cpp.cpp index f288f49f5fc2..768c4af98f4e 100644 --- a/toolchain/check/import_cpp.cpp +++ b/toolchain/check/import_cpp.cpp @@ -1088,7 +1088,7 @@ static auto MapBuiltinType(Context& context, SemIR::LocId loc_id, if (context.ast_context().hasSameType(qual_type, int_n_type)) { TypeExpr type_expr = MakeIntType(context, context.ints().Add(width), is_signed); - // Try to make sure signed integer of 32 or 64 bits are complete so we can + // Try to make sure integer types of 32 or 64 bits are complete so we can // check against them when deciding whether we need to generate a thunk. if (width == 32 || width == 64) { SemIR::TypeId type_id = type_expr.type_id;