================
@@ -563,6 +563,20 @@ def MismatchedDeallocatorChecker : 
Checker<"MismatchedDeallocator">,
   Dependencies<[DynamicMemoryModeling]>,
   Documentation<HasDocumentation>;
 
+def StreamChecker : Checker<"Stream">,
+  HelpText<"Check stream handling functions">,
+  WeakDependencies<[NonNullParamChecker]>,
+  CheckerOptions<[
+    CmdLineOption<Boolean,
+                  "Pedantic",
+                  "If false, assume that stream operations which are often not 
"
+                  "checked for error do not fail."
+                  "fail.",
----------------
steakhal wrote:

Isn't this line already present at the end of the previous line?

https://github.com/llvm/llvm-project/pull/89247
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to