Fixing typo (singed -> signed); NFC
authorAaron Ballman <aaron@aaronballman.com>
Wed, 29 Apr 2020 14:33:21 +0000 (10:33 -0400)
committerAaron Ballman <aaron@aaronballman.com>
Wed, 29 Apr 2020 14:33:21 +0000 (10:33 -0400)
clang/lib/Parse/ParseDecl.cpp

index 864b7b1..f7d8619 100644 (file)
@@ -2742,7 +2742,7 @@ bool Parser::ParseImplicitInt(DeclSpec &DS, CXXScopeSpec *SS,
     default:
       // This is probably supposed to be a type. This includes cases like:
       //   int f(itn);
-      //   struct S { unsinged : 4; };
+      //   struct S { unsigned : 4; };
       break;
     }
   }