[clang] 1ef2c39 - [Clang][NFC] Fix comment indentation in clang/include/clang/AST/FormatString.h (#174780)

via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 19 08:10:45 PST 2026


Author: Lakreite
Date: 2026-01-19T16:10:39Z
New Revision: 1ef2c399ae65b042943d299e6b891148e61101eb

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

LOG: [Clang][NFC] Fix comment indentation in clang/include/clang/AST/FormatString.h (#174780)

This commit fixes the indentation of a comment in
`clang/include/clang/AST/FormatString.h` to align with the LLVM style
guide (2 spaces instead of 4).

No functional changes - only formatting.

Related issue: None (trivial fix).

Added: 
    

Modified: 
    clang/include/clang/AST/FormatString.h

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/AST/FormatString.h b/clang/include/clang/AST/FormatString.h
index a284f2c44d633..56474e8e115fb 100644
--- a/clang/include/clang/AST/FormatString.h
+++ b/clang/include/clang/AST/FormatString.h
@@ -387,7 +387,7 @@ class OptionalAmount {
   }
 
   const char *getStart() const {
-      // We include the . character if it is given.
+    // We include the . character if it is given.
     return start - UsesDotPrefix;
   }
 


        


More information about the cfe-commits mailing list