Skip to content

Commit

Permalink
explicit ignoring return value of function
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Sep 18, 2015
1 parent 9090f4f commit d63222d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mast/compiler.c
Expand Up @@ -1535,7 +1535,7 @@ char * MVM_mast_compile(VM, MASTNode *node, MASTNodeTypes *types, unsigned int *
if (vm->serialized_string_heap) {
MVMint64 elems = ELEMS(vm, vm->serialized_string_heap);
for (i = 1; i < elems; i++)
get_string_heap_index(vm, ws, ATPOS_S(vm, vm->serialized_string_heap, i));
(void)get_string_heap_index(vm, ws, ATPOS_S(vm, vm->serialized_string_heap, i));
vm->serialized_string_heap = NULL;
}

Expand Down

0 comments on commit d63222d

Please sign in to comment.