[clang] e00071d - Fixing typo (singed -> signed); NFC

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 29 07:33:45 PDT 2020


Author: Aaron Ballman
Date: 2020-04-29T10:33:21-04:00
New Revision: e00071db0854ae9030e3b80a1f82c7cd66d57930

URL: https://github.com/llvm/llvm-project/commit/e00071db0854ae9030e3b80a1f82c7cd66d57930
DIFF: https://github.com/llvm/llvm-project/commit/e00071db0854ae9030e3b80a1f82c7cd66d57930.diff

LOG: Fixing typo (singed -> signed); NFC

Added: 
    

Modified: 
    clang/lib/Parse/ParseDecl.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp
index 864b7b12fbab..f7d8619ad667 100644
--- a/clang/lib/Parse/ParseDecl.cpp
+++ b/clang/lib/Parse/ParseDecl.cpp
@@ -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;
     }
   }


        


More information about the cfe-commits mailing list