We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when compiling with undefined MB_ENABLE_STACK_TRACE
my_basic.c:14689:14: error: 'l' undeclared (first use in this function) mb_unrefvar(l);
/* Get stack frame count of a MY-BASIC environment */ int mb_debug_count_stack_frames(struct mb_interpreter_t* s) { #ifdef MB_ENABLE_STACK_TRACE int result = 0; if(!s) { goto _exit; } result = _ls_count(s->stack_frames); _exit: return result; #else /* MB_ENABLE_STACK_TRACE */ int result = 0; mb_unrefvar(s); mb_unrefvar(l); return result; #endif /* MB_ENABLE_STACK_TRACE */ }
The text was updated successfully, but these errors were encountered:
Afaik and usually s and l go in pairs which seem that function is missing.
struct mb_interpreter_t* s, void** l
Sorry, something went wrong.
No branches or pull requests
Error when compiling with undefined MB_ENABLE_STACK_TRACE
The text was updated successfully, but these errors were encountered: