From d0e3a1e74c632f90f05dd26bd6fb2c374e5f542d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Tue, 15 Dec 2020 02:17:06 +0100 Subject: [PATCH] :art: Remove unused func --- src/emit/emit.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/emit/emit.c b/src/emit/emit.c index ef69ec37..4fc0a294 100644 --- a/src/emit/emit.c +++ b/src/emit/emit.c @@ -35,9 +35,7 @@ static inline void emit_pop(const Emitter emit, const m_uint scope) { env_pop(em static inline m_uint emit_push(const Emitter emit, const Type type, const Nspc nspc) { return env_push(emit->env, type, nspc); } -static inline m_uint emit_push_type(const Emitter emit, const Type type) { - return env_push_type(emit->env, type); -} + static inline m_uint emit_push_global(const Emitter emit) { return env_push_global(emit->env); } -- 2.43.0