Prechádzať zdrojové kódy

Update comment to not be specific for signed integers (#5987)

Following the change in #5980.
Boaz Brickner 8 mesiacov pred
rodič
commit
6ba900ab97
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      toolchain/check/import_cpp.cpp

+ 1 - 1
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;