File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ Changes in existing checks
118
118
global options of the same name.
119
119
120
120
- Improved :doc: `bugprone-too-small-loop-variable
121
- <clang-tidy/checks/bugprone/too-small-loop-variable>` support by correctly
122
- implementing the check for const loop boundary .
121
+ <clang-tidy/checks/bugprone/too-small-loop-variable>` check by incorporating
122
+ better support for `` const `` loop boundaries .
123
123
124
124
- Cleaned up :doc: `cppcoreguidelines-prefer-member-initializer
125
125
<clang-tidy/checks/cppcoreguidelines/prefer-member-initializer>`
@@ -163,13 +163,13 @@ Changes in existing checks
163
163
Removed checks
164
164
^^^^^^^^^^^^^^
165
165
166
- Miscellaneous
167
- ^^^^^^^^^^^^^
168
-
169
166
- Removed `cert-dcl21-cpp `, which was deprecated since :program: `clang-tidy ` 17,
170
167
since the rule DCL21-CPP has been removed from the CERT guidelines.
171
168
172
- - Fixed incorrect formatting in ``clang-apply-repalcements `` when no ``--format ``
169
+ Miscellaneous
170
+ ^^^^^^^^^^^^^
171
+
172
+ - Fixed incorrect formatting in ``clang-apply-replacements `` when no ``--format ``
173
173
option is specified. Now ``clang-apply-replacements `` applies formatting only with
174
174
the option.
175
175
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ that should be written as
29
29
g();
30
30
return;
31
31
32
- to make clear that ``g() `` is called and immediately afterwards the function
32
+ to make clear that ``g() `` is called and immediately afterwards the function
33
33
returns (nothing).
34
34
35
35
In C, the same issue is detected by the compiler if the ``-Wpedantic `` mode
@@ -46,6 +46,6 @@ Options
46
46
.. option :: StrictMode
47
47
48
48
The value `false ` specifies that a direct return statement shall
49
- be excluded from the analysis if it is the only statement not
50
- contained in a block like ``if (cond) return g(); ``. The default
49
+ be excluded from the analysis if it is the only statement not
50
+ contained in a block, like ``if (cond) return g(); ``. The default
51
51
value is `true `.
You can’t perform that action at this time.
0 commit comments