| 52 | #endif |
| 53 | int f2(int x) noexcept(true) { return x + 2; } |
| 54 | int f3(int x) noexcept(false) { return x + 3; } |
| 55 | PYBIND11_WARNING_PUSH |
| 56 | PYBIND11_WARNING_DISABLE_GCC("-Wdeprecated") |
| 57 | #if defined(__clang_major__) && __clang_major__ >= 5 |
nothing calls this directly
no outgoing calls
no test coverage detected