[clang] Extend -Wnonportable-include-path with a warning about trailing whitespace or dots (PR #96960)

via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 28 06:10:41 PDT 2024


================
@@ -361,7 +361,11 @@ class NonportablePath  : Warning<
   "non-portable path to file '%0'; specified path differs in case from file"
   " name on disk">;
 def pp_nonportable_path : NonportablePath,
-  InGroup<DiagGroup<"nonportable-include-path">>;
+  InGroup<NonportablePath>;
+def pp_nonportable_path_trailing_whitespace : Warning<
+  "non-portable path to file '%0'; specified path contains trailing"
+  "whitespace or dots">,
----------------
zmodem wrote:

Unless it would complicate the code too much, could we use `%select{whitespace|dots}` here to make the diagnostic specific to whether it's a trailing space or dot?

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


More information about the cfe-commits mailing list