| 232 | |
| 233 | template<class T> |
| 234 | constexpr py_gilruntimestate_v |
| 235 | py_gilruntimestate() |
| 236 | { |
| 237 | return { |
| 238 | sizeof(T), |
| 239 | {offsetof(T, locked)}, |
| 240 | {offsetof(T, last_holder)}, |
| 241 | }; |
| 242 | } |
| 243 | |
| 244 | template<class T> |
| 245 | constexpr py_runtime_v |
nothing calls this directly
no outgoing calls
no test coverage detected