| 270 | } |
| 271 | |
| 272 | static const Token * functionThrows(const Function * function) |
| 273 | { |
| 274 | std::set<const Function *> recursive; |
| 275 | |
| 276 | return functionThrowsRecursive(function, recursive); |
| 277 | } |
| 278 | |
| 279 | //-------------------------------------------------------------------------- |
| 280 | // void func() noexcept { throw x; } |
no test coverage detected