From: Jean Privat Date: Sat, 4 Apr 2015 13:36:44 +0000 (+0700) Subject: lib/array: suppress a warning to be compatible with the bootstrap X-Git-Tag: v0.7.4~37^2~7 X-Git-Url: http://nitlanguage.org lib/array: suppress a warning to be compatible with the bootstrap Signed-off-by: Jean Privat --- diff --git a/lib/standard/collection/array.nit b/lib/standard/collection/array.nit index 233621e..3cc0b57 100644 --- a/lib/standard/collection/array.nit +++ b/lib/standard/collection/array.nit @@ -13,7 +13,9 @@ # This module introduces the standard array structure. # It also implements two other abstract collections : ArrayMap and ArraySet -module array +module array is + no_warning "useless-type-test" # to avoid warning with nitc while compiling with c_src +end import abstract_collection