[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / hicpp / avoid-goto.rst
blobffef01ca5d4eb178d655dde918dffcc29cda6dcf
1 .. title:: clang-tidy - hicpp-avoid-goto
2 .. meta::
3    :http-equiv=refresh: 5;URL=../cppcoreguidelines/avoid-goto.html
5 hicpp-avoid-goto
6 ================
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.
14 Both coding guidelines implement the same exception to the usage of ``goto``.