Skip to content
Snippets Groups Projects
Commit e6ab4174 authored by David Hedbor's avatar David Hedbor
Browse files

Fixed so that compiling works without debug.

gc_check_short_svalues -> gc_check_short_svalue

Rev: src/gc.h:1.14
parent 38f0228e
Branches
Tags
No related merge requests found
......@@ -47,7 +47,7 @@ void do_gc(void);
#define GC_FREE() do { num_objects-- ; if(num_objects < 0) fatal("Panic!! less than zero objects!\n"); }while(0)
#else
#define debug_gc_check_svalues(S,N,T,V) gc_check_svalues(S,N)
#define debug_gc_check_short_svalue(S,N,T,V) gc_check_short_svalues(S,N)
#define debug_gc_check_short_svalue(S,N,T,V) gc_check_short_svalue(S,N)
#define debug_gc_xmark_svalue(S,N,X) gc_xmark_svalue(S,N)
#define GC_FREE() do { num_objects-- ; }while(0)
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment