.. title:: clang-tidy - hicpp-avoid-goto hicpp-avoid-goto ================ The `hicpp-avoid-goto` check is an alias to `cppcoreguidelines-avoid-goto `_. Rule `6.3.1 High Integrity C++ `_ requires that ``goto`` only skips parts of a block and is not used for other reasons. Both coding guidelines implement the same exception to the usage of ``goto``.