]> Nishi Git Mirror - gwion.git/commitdiff
:fire: some clean
authorfennecdjay <fennecdjay@gmail.com>
Tue, 13 Feb 2024 17:11:41 +0000 (18:11 +0100)
committerfennecdjay <fennecdjay@gmail.com>
Tue, 13 Feb 2024 17:11:41 +0000 (18:11 +0100)
src/parse/scanx.c

index 30e45a44f397bff49aa927db36cd71c9589a4bc7..ec46f12251f229ce09f62c20564454e2b1d8a634 100644 (file)
@@ -6,14 +6,6 @@
 #include "traverse.h"
 #include "parse.h"
 
-ANN static inline bool _body(const Env e, Ast b, const _envset_func f) {
-  for(m_uint i = 0; i < b->len; i++) {
-    Section *section = mp_vector_at(b, Section, i);
-    CHECK_B(f(e, section));
-  }
-  return true;
-}
-
 ANN static inline bool _body_b(const Env e, Ast b, const _envset_func f) {
   for(m_uint i = 0; i < b->len; i++) {
     Section *section = mp_vector_at(b, Section, i);