Skip to content

Commit

Permalink
Remove printf
Browse files Browse the repository at this point in the history
  • Loading branch information
dapetcu21 committed Feb 18, 2022
1 parent a370ca3 commit aeba591
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion fuior_compiler/native_extension/src/fuior_lint.c
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,6 @@ static void collect_command_arguments(fuior_state *state, fuior_command *cmd) {
// TODO: Handle scopes here
for (fuior_list_item *it = cmd->args.first; it; it = it->next) {
fuior_command_arg *arg = (fuior_command_arg*)it->data;
printf("%s %s\n", arg->name, fuior_type_name(arg->type));
fuior_map_set(&state->variables, arg->name, (void*)arg->type);
fuior_map_set(&state->varname_enum->as_enum.items, arg->name, (void*)1);
}
Expand Down

0 comments on commit aeba591

Please sign in to comment.