[clang] [DRAFT][analyzer][NFC] clang-format our folders (PR #82599)

Balazs Benics via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 22 01:59:30 PST 2024


================
@@ -520,18 +518,19 @@ class TypedRegion : public SubRegion {
 
   bool isBoundable() const override { return true; }
 
-  static bool classof(const MemRegion* R) {
+  static bool classof(const MemRegion *R) {
     unsigned k = R->getKind();
     return k >= BEGIN_TYPED_REGIONS && k <= END_TYPED_REGIONS;
   }
 };
 
-/// TypedValueRegion - An abstract class representing regions having a typed value.
+/// TypedValueRegion - An abstract class representing regions having a typed
+/// value.
----------------
steakhal wrote:

```suggestion
/// An abstract class representing regions having a typed value.
```

https://github.com/llvm/llvm-project/pull/82599


More information about the cfe-commits mailing list