| 181 | |
| 182 | struct Adder : AdderBase { |
| 183 | void |
| 184 | operator()(const Data &first, const Data &second, const DataVisitor &visitor) const override { |
| 185 | PYBIND11_OVERRIDE_PURE_NAME( |
| 186 | void, AdderBase, "__call__", operator(), first, second, visitor); |
| 187 | } |
| 188 | }; |
| 189 | |
| 190 | static void test_gil() { |
nothing calls this directly
no outgoing calls
no test coverage detected