brintos

brintos / llvm-project-archived public Read only

0
0
Text · 490 B · 744a12c Raw
17 lines · plain
1.. title:: clang-tidy - modernize-avoid-setjmp-longjmp2 3modernize-avoid-setjmp-longjmp4==============================5 6Flags all call expressions involving ``setjmp()`` and7``longjmp()`` in C++ code.8 9Exception handling with ``throw`` and ``catch`` should be used instead.10 11References12----------13 14This check corresponds to the CERT C++ Coding Standard rule15`ERR52-CPP. Do not use setjmp() or longjmp()16<https://www.securecoding.cert.org/confluence/pages/viewpage.action?pageId=88046492>`_.17