浏览代码

removed debug print

Nicolas Cannasse 4 年之前
父节点
当前提交
b234192238
共有 1 个文件被更改,包括 1 次插入4 次删除
  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;