]> Nishi Git Mirror - gwion.git/commitdiff
:art: Minor fixes
authorJérémie Astor <fennecdjay@gmail.com>
Sun, 7 Mar 2021 17:49:56 +0000 (18:49 +0100)
committerJérémie Astor <fennecdjay@gmail.com>
Sun, 7 Mar 2021 17:49:56 +0000 (18:49 +0100)
examples/ptr_assign_class.gw
src/clean.c
src/lib/array.c

index 5b560f28b101df665b44c0d01cb5d621b568b64e..9b73e8a551f295f4ed3e9f6ad700d18bab169d1b 100644 (file)
@@ -2,7 +2,7 @@ class C {
        funcdef void Test();
        fun void test1(){};
   var Test test0;
-       <<< test1 => test0 >>>;
+       <<< test1 @=> test0 >>>;
 }
 
 var C c;
index f9d92cab23d6e25b2e83ae9f2e4da33019cd0cd3..148e412a3eb18ac7b34fb643a929a6cbf30309d8 100644 (file)
@@ -280,7 +280,7 @@ ANN static void clean_func_base(Clean *a, Func_Base *b) {
 ANN static void clean_func_def(Clean *a, Func_Def b) {
   clean_func_base(a, b->base);
   ++a->scope;
-  if(b->d.code && !(b->base->func && vflag(b->base->func->value_ref, vflag_builtin)))
+  if(b->d.code && !(b->base->func && safe_vflag(b->base->func->value_ref, vflag_builtin)))
     clean_stmt(a, b->d.code);
   else
     b->d.code = NULL;
index 9670b012fc0eda6692ac6f818fcee160a334e981..b0d4172bd1f43079ec0d55061e9b19ca1e724472 100644 (file)
@@ -161,7 +161,6 @@ static MFUN(vm_vector_insert_struct) {
 }
 
 static MFUN(vm_vector_size) {
-printf("[%s] %p %p\n", __func__, o, ARRAY(o));
   *(m_uint*)RETURN = ARRAY_LEN(ARRAY(o));
 }