| 181 | |
| 182 | template<class T> |
| 183 | constexpr py_is_v |
| 184 | py_isv311() |
| 185 | { |
| 186 | return { |
| 187 | sizeof(T), |
| 188 | {offsetof(T, next)}, |
| 189 | {offsetof(T, threads.head)}, |
| 190 | {offsetof(T, gc)}, |
| 191 | {offsetof(T, modules)}, |
| 192 | {offsetof(T, sysdict)}, |
| 193 | {offsetof(T, builtins)}, |
| 194 | }; |
| 195 | } |
| 196 | |
| 197 | template<class T> |
| 198 | constexpr py_is_v |
nothing calls this directly
no outgoing calls
no test coverage detected