| 46 | |
| 47 | template<class T> |
| 48 | constexpr py_frame_v |
| 49 | py_frame() |
| 50 | { |
| 51 | return { |
| 52 | sizeof(T), |
| 53 | {offsetof(T, f_back)}, |
| 54 | {offsetof(T, f_code)}, |
| 55 | {offsetof(T, f_lasti)}, |
| 56 | {0}, |
| 57 | {offsetof(T, f_localsplus)}, |
| 58 | }; |
| 59 | } |
| 60 | |
| 61 | template<class T> |
| 62 | constexpr py_frame_v |
nothing calls this directly
no outgoing calls
no test coverage detected