The reason this is a struct is so Cython can easily generate automatic conversions without explicit code.
| 6 | // The reason this is a struct is so Cython can easily generate |
| 7 | // automatic conversions without explicit code. |
| 8 | struct NativeFrame |
| 9 | { |
| 10 | unsigned long address; |
| 11 | std::string symbol; |
| 12 | std::string path; |
| 13 | int linenumber; |
| 14 | int colnumber; |
| 15 | std::string library; |
| 16 | }; |
| 17 | } // namespace pystack |
nothing calls this directly
no outgoing calls
no test coverage detected