| 122 | |
| 123 | template<class T> |
| 124 | constexpr py_thread_v |
| 125 | py_thread() |
| 126 | { |
| 127 | return { |
| 128 | sizeof(T), |
| 129 | {offsetof(T, prev)}, |
| 130 | {offsetof(T, next)}, |
| 131 | {offsetof(T, interp)}, |
| 132 | {offsetof(T, frame)}, |
| 133 | {offsetof(T, thread_id)}, |
| 134 | }; |
| 135 | } |
| 136 | |
| 137 | template<class T> |
| 138 | constexpr py_thread_v |
nothing calls this directly
no outgoing calls
no test coverage detected