njames93 added inline comments.

================
Comment at: clang-tools-extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp:132
   }
+
   return false;
----------------
Don't change formatting of code this patch doesn't need to touch


================
Comment at: clang-tools-extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp:153
   }
+
   return Result;
----------------
likewise


================
Comment at: clang-tools-extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp:197
+        std::string AdditionalVarNames = getCondVarNames(Init);
+        if (!AdditionalVarNames.empty()) {
+          CondVarNames += ", " + AdditionalVarNames;
----------------
elide braces


Repository:
  rCTE Clang Tools Extra

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D73270/new/

https://reviews.llvm.org/D73270



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to