File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ New checks
173173
174174 Replace comparisons between signed and unsigned integers with their safe
175175 C++20 ``std::cmp_* `` alternative, if available.
176-
176+
177177- New :doc: `portability-template-virtual-member-function
178178 <clang-tidy/checks/portability/template-virtual-member-function>` check.
179179
@@ -184,7 +184,7 @@ New checks
184184 <clang-tidy/checks/readability/use-cpp-style-comments>` check.
185185
186186 Replace C-style comments with C++-style comments.
187-
187+
188188New check aliases
189189^^^^^^^^^^^^^^^^^
190190
Original file line number Diff line number Diff line change @@ -14,14 +14,13 @@ Examples:
1414
1515Input:
1616.. code-block::c++
17-
17+
1818 /* This is a single-line comment */
1919 int x = 42; /* Inline comment */
2020
2121 /* This is a
2222 multi-line comment */
2323
24-
2524 Output:
2625.. code-block::c++
2726
@@ -34,6 +33,8 @@ Output:
3433 .. note ::
3534
3635 Inline Comments are neither fixed nor warned.
36+
3737 Example:
3838 .. code-block :: c++
39+
3940 int a = /* this is a comment */ 5;
You can’t perform that action at this time.
0 commit comments