[clang-format] Elide unnecessary braces. NFC.
authorMarek Kurdej <marek.kurdej+llvm.org@gmail.com>
Wed, 2 Feb 2022 13:27:11 +0000 (14:27 +0100)
committerMarek Kurdej <marek.kurdej+llvm.org@gmail.com>
Wed, 2 Feb 2022 13:36:01 +0000 (14:36 +0100)
clang/lib/Format/ContinuationIndenter.cpp
clang/lib/Format/Format.cpp
clang/lib/Format/MacroExpander.cpp
clang/lib/Format/TokenAnnotator.cpp

index 45a4d23..95cf0a0 100644 (file)
@@ -197,12 +197,10 @@ RawStringFormatStyleManager::RawStringFormatStyleManager(
       LanguageStyle = PredefinedStyle;
     }
     LanguageStyle->ColumnLimit = CodeStyle.ColumnLimit;
-    for (StringRef Delimiter : RawStringFormat.Delimiters) {
+    for (StringRef Delimiter : RawStringFormat.Delimiters)
       DelimiterStyle.insert({Delimiter, *LanguageStyle});
-    }
-    for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions) {
+    for (StringRef EnclosingFunction : RawStringFormat.EnclosingFunctions)
       EnclosingFunctionStyle.insert({EnclosingFunction, *LanguageStyle});
-    }
   }
 }
 
index 3abe569..128196a 100644 (file)
@@ -2092,9 +2092,8 @@ public:
 
 private:
   void cleanupLine(AnnotatedLine *Line) {
-    for (auto *Child : Line->Children) {
+    for (auto *Child : Line->Children)
       cleanupLine(Child);
-    }
 
     if (Line->Affected) {
       cleanupRight(Line->First, tok::comma, tok::comma);
@@ -2120,9 +2119,8 @@ private:
     std::set<unsigned> DeletedLines;
     for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
       auto &Line = *AnnotatedLines[i];
-      if (Line.startsWithNamespace()) {
+      if (Line.startsWithNamespace())
         checkEmptyNamespace(AnnotatedLines, i, i, DeletedLines);
-      }
     }
 
     for (auto Line : DeletedLines) {
@@ -2184,9 +2182,8 @@ private:
             AnnotatedLines[CurrentLine]->Last->Tok.getEndLoc())))
       return false;
 
-    for (unsigned i = InitLine; i <= CurrentLine; ++i) {
+    for (unsigned i = InitLine; i <= CurrentLine; ++i)
       DeletedLines.insert(i);
-    }
 
     return true;
   }
index de96cb2..9c6bcb8 100644 (file)
@@ -125,9 +125,8 @@ MacroExpander::MacroExpander(
     IdentifierTable &IdentTable)
     : SourceMgr(SourceMgr), Style(Style), Allocator(Allocator),
       IdentTable(IdentTable) {
-  for (const std::string &Macro : Macros) {
+  for (const std::string &Macro : Macros)
     parseDefinition(Macro);
-  }
 }
 
 MacroExpander::~MacroExpander() = default;
index 9d130db..0bd6dfa 100644 (file)
@@ -1388,9 +1388,8 @@ public:
     }
 
     for (const auto &ctx : Contexts) {
-      if (ctx.InStructArrayInitializer) {
+      if (ctx.InStructArrayInitializer)
         return LT_ArrayOfStructInitializer;
-      }
     }
 
     return LT_Other;