File tree Expand file tree Collapse file tree 3 files changed +10
-12
lines changed Expand file tree Collapse file tree 3 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ hicpp-avoid-c-arrays
8
8
The hicpp-avoid-c-arrays check is an alias, please see
9
9
:doc: `modernize-avoid-c-arrays <../modernize/avoid-c-arrays >`
10
10
for more information.
11
+ It partly enforces the `rule 4.1.1 <https://www.perforce.com/resources/qac/high-integrity-cpp-coding-standard/standard-conversions >`_.
Original file line number Diff line number Diff line change 5
5
hicpp-avoid-goto
6
6
================
7
7
8
- The `hicpp-avoid-goto ` check is an alias to
9
- :doc: `cppcoreguidelines-avoid-goto <../cppcoreguidelines/avoid-goto >`.
10
- Rule `6.3.1 High Integrity C++ <https://www.perforce.com/resources/qac/high-integrity-cpp-coding-standard/statements >`_
11
- requires that ``goto `` only skips parts of a block and is not used for other
12
- reasons.
13
-
14
- Both coding guidelines implement the same exception to the usage of ``goto ``.
8
+ The `hicpp-avoid-goto ` check is an alias, please see
9
+ :doc: `cppcoreguidelines-avoid-goto <../cppcoreguidelines/avoid-goto >`
10
+ for more information.
11
+ It enforces the `rule 6.3.1 <https://www.perforce.com/resources/qac/high-integrity-cpp-coding-standard/statements >`_.
Original file line number Diff line number Diff line change 1
1
.. title :: clang-tidy - hicpp-no-assembler
2
2
3
3
hicpp-no-assembler
4
- ===================
4
+ ==================
5
5
6
- Check for assembler statements. No fix is offered.
6
+ Checks for assembler statements. Use of inline assembly should be avoided since
7
+ it restricts the portability of the code.
7
8
8
- Inline assembler is forbidden by the `High Integrity C++ Coding Standard
9
- <https://www.perforce.com/resources/qac/high-integrity-cpp-coding-standard/declarations> `_
10
- as it restricts the portability of code.
9
+ This enforces `rule 7.5.1 <https://www.perforce.com/resources/qac/high-integrity-cpp-coding-standard/declarations >`_
10
+ of the High Integrity C++ Coding Standard.
You can’t perform that action at this time.
0 commit comments