| 151 | |
| 152 | template<class T> |
| 153 | constexpr py_thread_v |
| 154 | py_threadv313() |
| 155 | { |
| 156 | return { |
| 157 | sizeof(T), |
| 158 | {offsetof(T, prev)}, |
| 159 | {offsetof(T, next)}, |
| 160 | {offsetof(T, interp)}, |
| 161 | {offsetof(T, frame)}, |
| 162 | {offsetof(T, thread_id)}, |
| 163 | {offsetof(T, native_thread_id)}, |
| 164 | }; |
| 165 | } |
| 166 | |
| 167 | template<class T> |
| 168 | constexpr py_is_v |
nothing calls this directly
no outgoing calls
no test coverage detected