| 243 | |
| 244 | template<class T> |
| 245 | constexpr py_runtime_v |
| 246 | py_runtime() |
| 247 | { |
| 248 | return { |
| 249 | sizeof(T), |
| 250 | {offsetof(T, finalizing)}, |
| 251 | {offsetof(T, interpreters.head)}, |
| 252 | {offsetof(T, gc)}, |
| 253 | {offsetof(T, gilstate.tstate_current._value)}, |
| 254 | }; |
| 255 | } |
| 256 | |
| 257 | template<class T> |
| 258 | constexpr py_runtime_v |
nothing calls this directly
no outgoing calls
no test coverage detected