[libc-commits] [libc] 5a5f02f - [NFC][libc] Remove double semicolon

via libc-commits libc-commits at lists.llvm.org
Thu Aug 25 01:17:19 PDT 2022


Author: Guillaume Chatelet
Date: 2022-08-25T10:17:12+02:00
New Revision: 5a5f02f0e9798efe7ff7e69623289619877945ec

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

LOG: [NFC][libc] Remove double semicolon

Added: 
    

Modified: 
    libc/src/stdio/printf_core/parser.h

Removed: 
    


################################################################################
diff  --git a/libc/src/stdio/printf_core/parser.h b/libc/src/stdio/printf_core/parser.h
index 3d47f6af39bf4..01db9da337da5 100644
--- a/libc/src/stdio/printf_core/parser.h
+++ b/libc/src/stdio/printf_core/parser.h
@@ -48,7 +48,7 @@ class Parser {
   // TypeDesc objects, which store the size as well as minimal type information.
   // This is necessary because some systems separate the floating point and
   // integer values in va_args.
-  TypeDesc desc_arr[DESC_ARR_LEN] = {{0, Integer}};;
+  TypeDesc desc_arr[DESC_ARR_LEN] = {{0, Integer}};
 
   // TODO: Look into object stores for optimization.
 


        


More information about the libc-commits mailing list