NOLINTNEXTLINE(modernize-use-noexcept)
| 61 | #endif |
| 62 | // NOLINTNEXTLINE(modernize-use-noexcept) |
| 63 | int f4(int x) throw() { return x + 4; } // Deprecated equivalent to noexcept(true) |
| 64 | PYBIND11_WARNING_POP |
| 65 | struct C { |
| 66 | int m1(int x) noexcept { return x - 1; } |
nothing calls this directly
no outgoing calls
no test coverage detected