| 141 | unsigned char *frame; |
| 142 | |
| 143 | AutoStack(CppiaCtx *inCtx) : ctx(inCtx) |
| 144 | { |
| 145 | frame = ctx->frame; |
| 146 | pointer = ctx->pointer; |
| 147 | ctx->frame = pointer; |
| 148 | } |
| 149 | AutoStack(CppiaCtx *inCtx,unsigned char *inPointer) : ctx(inCtx) |
| 150 | { |
| 151 | frame = ctx->frame; |
nothing calls this directly
no outgoing calls
no test coverage detected