Browse Source

removed debug print

Nicolas Cannasse 4 years ago
parent
commit
b234192238
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/std/obj.c

+ 1 - 4
src/std/obj.c

@@ -532,10 +532,7 @@ vvirtual *hl_to_virtual( hl_type *vt, vdynamic *obj ) {
 			}
 			if( interface_address ) {
 				v = (vvirtual*)*interface_address;
-				if( v ) {
-					printf(".");
-					return v;
-				}
+				if( v ) return v;
 			}
 			v = (vvirtual*)hl_gc_alloc(vt, sizeof(vvirtual) + sizeof(void*)*vt->virt->nfields);
 			v->t = vt;