1 .. title:: clang-tidy - hicpp-avoid-goto
3 :http-equiv=refresh: 5;URL=../cppcoreguidelines/avoid-goto.html
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
14 Both coding guidelines implement the same exception to the usage of ``goto``.