From: fennecdjay Date: Sun, 31 Mar 2019 17:22:44 +0000 (+0200) Subject: :shirt: Ast cleaning X-Git-Tag: nightly~2582 X-Git-Url: http://10.11.0.4:5575/?a=commitdiff_plain;h=117f906856851a6771f16936ae53ac41d667c02f;p=gwion.git :shirt: Ast cleaning --- diff --git a/ast b/ast index 51494ec4..d1459fb3 160000 --- a/ast +++ b/ast @@ -1 +1 @@ -Subproject commit 51494ec4831f9680b42c0156c17be88c598a77b9 +Subproject commit d1459fb3a76e2a75731ab77055ae57dbabfe3cd7 diff --git a/src/oo/env_utils.c b/src/oo/env_utils.c index 13885479..14c9149c 100644 --- a/src/oo/env_utils.c +++ b/src/oo/env_utils.c @@ -50,7 +50,7 @@ ANN static Type find_typeof(const Env env, ID_List path) { ANN Type find_type(const Env env, ID_List path) { if(path->ref) - return find_typeof(env, path->ref); + return find_typeof(env, path); Type type = nspc_lookup_type1(env->curr, path->xid); CHECK_OO(type) Nspc nspc = type->nspc;