| 75 | |
| 76 | template<class T> |
| 77 | constexpr py_frame_v |
| 78 | py_framev312() |
| 79 | { |
| 80 | return { |
| 81 | sizeof(T), |
| 82 | {offsetof(T, previous)}, |
| 83 | {offsetof(T, f_code)}, |
| 84 | {0}, |
| 85 | {offsetof(T, prev_instr)}, |
| 86 | {offsetof(T, localsplus)}, |
| 87 | {0}, |
| 88 | {offsetof(T, owner)}, |
| 89 | }; |
| 90 | } |
| 91 | |
| 92 | template<class T> |
| 93 | constexpr py_frame_v |
nothing calls this directly
no outgoing calls
no test coverage detected