| 60 | |
| 61 | template<class T> |
| 62 | constexpr py_frame_v |
| 63 | py_framev311() |
| 64 | { |
| 65 | return { |
| 66 | sizeof(T), |
| 67 | {offsetof(T, previous)}, |
| 68 | {offsetof(T, f_code)}, |
| 69 | {0}, |
| 70 | {offsetof(T, prev_instr)}, |
| 71 | {offsetof(T, localsplus)}, |
| 72 | {offsetof(T, is_entry)}, |
| 73 | }; |
| 74 | } |
| 75 | |
| 76 | template<class T> |
| 77 | constexpr py_frame_v |
nothing calls this directly
no outgoing calls
no test coverage detected