[clang-tools-extra] [clang-tidy] Add `llvm-formatv-string` (PR #195974)
Zeyi Xu via cfe-commits
cfe-commits at lists.llvm.org
Sun May 10 22:01:39 PDT 2026
================
@@ -0,0 +1,175 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "FormatvStringCheck.h"
+#include "../utils/OptionsUtils.h"
+#include "clang/AST/DeclTemplate.h"
+#include "clang/AST/Expr.h"
+#include "clang/ASTMatchers/ASTMatchers.h"
+#include "llvm/ADT/SmallBitVector.h"
+#include "llvm/ADT/SmallVector.h"
+#include "llvm/Support/Error.h"
+#include <vector>
----------------
zeyi2 wrote:
```suggestion
```
https://github.com/llvm/llvm-project/pull/195974
More information about the cfe-commits
mailing list