| 410 | } |
| 411 | |
| 412 | void CheckExceptionSafety::runChecks(const Tokenizer &tokenizer, ErrorLogger& errorLogger) |
| 413 | { |
| 414 | if (tokenizer.isC()) |
| 415 | return; |
| 416 | |
| 417 | CheckExceptionSafetyImpl checkExceptionSafety(&tokenizer, tokenizer.getSettings(), errorLogger); |
| 418 | checkExceptionSafety.destructors(); |
| 419 | checkExceptionSafety.deallocThrow(); |
| 420 | checkExceptionSafety.checkRethrowCopy(); |
| 421 | checkExceptionSafety.checkCatchExceptionByValue(); |
| 422 | checkExceptionSafety.nothrowThrows(); |
| 423 | checkExceptionSafety.unhandledExceptionSpecification(); |
| 424 | checkExceptionSafety.rethrowNoCurrentException(); |
| 425 | } |
| 426 | |
| 427 | void CheckExceptionSafety::getErrorMessages(ErrorLogger& errorLogger, const Settings &settings) const |
| 428 | { |
nothing calls this directly
no test coverage detected