[clang] [clang] consistently quote expressions in diagnostics (PR #134769)
Matheus Izvekov via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 9 18:13:32 PDT 2025
================
@@ -143,8 +143,8 @@ def note_constexpr_null_subobject : Note<
"access array element of|perform pointer arithmetic on|"
"access real component of|"
"access imaginary component of}0 null pointer">;
-def note_constexpr_null_callee : Note<
- "'%0' evaluates to a null function pointer">;
+def note_constexpr_null_callee
+ : Note<"%0 evaluates to a null function pointer">;
----------------
mizvekov wrote:
Yeah, clang-format gained support for these files a while back.
https://github.com/llvm/llvm-project/pull/134769
More information about the cfe-commits
mailing list