llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Swastik Saha (SwastikSaha) <details> <summary>Changes</summary> The UsersManual previously stated that -w disables all diagnostics. However, -w suppresses warning diagnostics only; errors are still emitted. --- Full diff: https://github.com/llvm/llvm-project/pull/182670.diff 1 Files Affected: - (modified) clang/docs/UsersManual.rst (+1-1) ``````````diff diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index cec1e2a6a4677..1d6a29ee478fa 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -149,7 +149,7 @@ Options to Control Error and Warning Messages .. option:: -w - Disable all diagnostics. + Disable all warning diagnostics. Errors are still emitted. .. option:: -Weverything `````````` </details> https://github.com/llvm/llvm-project/pull/182670 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
