Skip to content

Commit 49d9f06

Browse files
author
Colin Robertson
authored
Make i18n easier.
1 parent d1836e5 commit 49d9f06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/code-quality/c26497.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines F.4
88
---
99
# C26497 USE_CONSTEXPR_FOR_FUNCTION
1010

11-
This function %function% could be marked `constexpr` if compile-time evaluation is desired (f.4).
11+
> This function *function-name* could be marked `constexpr` if compile-time evaluation is desired (f.4).
1212
1313
## See also
1414

@@ -25,7 +25,7 @@ void function1() noexcept
2525
}
2626
```
2727
28-
To reduce noise on new code, this warning will not be issued if the function has an empty implementation.
28+
To reduce code analysis noise on new code, this warning isn't issued if the function has an empty implementation.
2929
3030
```cpp
3131
int function1(){ // no C26497

0 commit comments

Comments
 (0)