]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Remove useless func
authorfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 9 Oct 2019 22:31:45 +0000 (00:31 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 9 Oct 2019 22:31:56 +0000 (00:31 +0200)
include/type.h
src/oo/type.c

index 8b6b56e8849f51bf7713a6d3355ca3bbfa6d5029..7b80a27accf21d15f78c61d671968cea23027d30 100644 (file)
@@ -30,7 +30,7 @@ ANN2(1,3) ANEW Type new_type(MemPool, const m_uint xid, const m_str name, const
 ANEW ANN Type type_copy(MemPool, const Type type);
 ANN m_str get_type_name(const Env, const m_str, const m_uint);
 ANN Value find_value(const Type, const Symbol);
-ANN Func find_func(const Type, const Symbol);
+//ANN Func find_func(const Type, const Symbol);
 ANN m_bool isa(const Type, const Type) __attribute__((pure));
 ANN m_bool isres(const Env, const Symbol, const loc_t pos);
 ANN Type array_type(const Env, const Type, const m_uint);
index c88d69de33d63ac54bb5f972890c8ada4bd21514..bcdb2bfdc4615b16b516ec92572f6db9d08aec54 100644 (file)
@@ -82,7 +82,7 @@ ANN t find_##name(const Type type, const Symbol xid) {               \
   return type->e->parent ? find_##name(type->e->parent, xid) : NULL; \
 }
 describe_find(value, Value)
-describe_find(func,  Func)
+//describe_find(func,  Func)
 
 ANN Type typedef_base(Type t) {
   while(GET_FLAG(t, typedef))