modernize-avoid-setjmp-longjmp¶
Flags all call expressions involving setjmp() and
longjmp() in C++ code.
Exception handling with throw and catch should be used instead.
References¶
This check corresponds to the CERT C++ Coding Standard rule ERR52-CPP. Do not use setjmp() or longjmp().