[llvm-branch-commits] [llvm] c8c3a3e - Fix formatting

Michał Górny via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Dec 20 18:45:17 PST 2025


Author: Michał Górny
Date: 2025-12-21T03:44:58+01:00
New Revision: c8c3a3ecbcc83fb6114d4434a0e4232d32d88c2a

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

LOG: Fix formatting

Signed-off-by: Michał Górny <mgorny at gentoo.org>

Added: 
    

Modified: 
    llvm/include/llvm/ADT/Bitset.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ADT/Bitset.h b/llvm/include/llvm/ADT/Bitset.h
index 1d4cbf8306230..3541db49dd974 100644
--- a/llvm/include/llvm/ADT/Bitset.h
+++ b/llvm/include/llvm/ADT/Bitset.h
@@ -16,10 +16,10 @@
 #ifndef LLVM_ADT_BITSET_H
 #define LLVM_ADT_BITSET_H
 
-#include <llvm/ADT/STLExtras.h>
 #include <array>
 #include <climits>
 #include <cstdint>
+#include <llvm/ADT/STLExtras.h>
 
 namespace llvm {
 
@@ -155,7 +155,7 @@ class Bitset {
 
   bool operator!=(const Bitset &RHS) const { return !(*this == RHS); }
 
-  bool operator < (const Bitset &Other) const {
+  bool operator<(const Bitset &Other) const {
     for (unsigned I = 0, E = size(); I != E; ++I) {
       bool LHS = test(I), RHS = Other.test(I);
       if (LHS != RHS)


        


More information about the llvm-branch-commits mailing list