| 17 | |
| 18 | template<class T> |
| 19 | constexpr py_code_v |
| 20 | py_code() |
| 21 | { |
| 22 | return { |
| 23 | sizeof(T), |
| 24 | {offsetof(T, co_filename)}, |
| 25 | {offsetof(T, co_name)}, |
| 26 | {offsetof(T, co_lnotab)}, |
| 27 | {offsetof(T, co_firstlineno)}, |
| 28 | {offsetof(T, co_argcount)}, |
| 29 | {offsetof(T, co_varnames)}, |
| 30 | }; |
| 31 | } |
| 32 | |
| 33 | template<class T> |
| 34 | constexpr py_code_v |
nothing calls this directly
no outgoing calls
no test coverage detected