[clang-tools-extra] [clang-tidy] add modernize-use-std-numbers (PR #66583)

Julian Schmidt via cfe-commits cfe-commits at lists.llvm.org
Fri Nov 3 17:54:44 PDT 2023


================
@@ -0,0 +1,28 @@
+.. title:: clang-tidy - modernize-use-std-numbers
+
+modernize-use-std-numbers
+=========================
+
+Finds constants and function calls to math functions that can be replaced
+with c++20's mathematical constants from the ``numbers`` header and offers fix-it hints.
+Does not match the use of variables with that value, and instead,
+offers a replacement at the definition of those variables.
+
----------------
5chmidti wrote:

I’ve also extended the documentation slightly to explain the replacements a bit further.

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


More information about the cfe-commits mailing list