clib/gc_chooser: add a default for a switch to silent a warning
[nit.git] / clib / gc_chooser.c
index f40a23e..497cc7e 100644 (file)
@@ -61,6 +61,7 @@ void nit_gcollect(void) {
 #ifdef WITH_LIBGC
        case gc_opt_boehm: GC_gcollect(); break;
 #endif
+       default: break; /* nothing can be done */
        }
 }