| 91 | |
| 92 | template<class T> |
| 93 | constexpr py_frame_v |
| 94 | py_framev314() |
| 95 | { |
| 96 | return { |
| 97 | sizeof(T), |
| 98 | {offsetof(T, previous)}, |
| 99 | {offsetof(T, f_executable)}, |
| 100 | {0}, |
| 101 | {offsetof(T, instr_ptr)}, |
| 102 | {offsetof(T, localsplus)}, |
| 103 | {0}, |
| 104 | {offsetof(T, owner)}, |
| 105 | }; |
| 106 | } |
| 107 | |
| 108 | template<class T> |
| 109 | constexpr py_thread_v |
nothing calls this directly
no outgoing calls
no test coverage detected