We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1836e5 commit 49d9f06Copy full SHA for 49d9f06
docs/code-quality/c26497.md
@@ -8,7 +8,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines F.4
8
---
9
# C26497 USE_CONSTEXPR_FOR_FUNCTION
10
11
-This function %function% could be marked `constexpr` if compile-time evaluation is desired (f.4).
+> This function *function-name* could be marked `constexpr` if compile-time evaluation is desired (f.4).
12
13
## See also
14
@@ -25,7 +25,7 @@ void function1() noexcept
25
}
26
```
27
28
-To reduce noise on new code, this warning will not be issued if the function has an empty implementation.
+To reduce code analysis noise on new code, this warning isn't issued if the function has an empty implementation.
29
30
```cpp
31
int function1(){ // no C26497
0 commit comments