[clang-tools-extra] [clang-tidy] modernize-use-nullptr matches "NULL" in templates (PR #109169)

Florian Mayer via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 18 13:20:10 PDT 2024


================
@@ -84,6 +84,14 @@ void test_macro_expansion4() {
 #undef MY_NULL
 }
 
+template <typename T> struct pear {
+  T x;
+};
+void test_templated() {
+  pear<int*> p = { NULL };
----------------
fmayer wrote:

Doesn't this need some `CHECK` or `CHECK-NOT`?

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


More information about the cfe-commits mailing list