| 222 | |
| 223 | template<class T> |
| 224 | constexpr py_cframe_v |
| 225 | py_cframe() |
| 226 | { |
| 227 | return { |
| 228 | sizeof(T), |
| 229 | {offsetof(T, current_frame)}, |
| 230 | }; |
| 231 | } |
| 232 | |
| 233 | template<class T> |
| 234 | constexpr py_gilruntimestate_v |
nothing calls this directly
no outgoing calls
no test coverage detected