浏览代码

Add untyped for deleteField

Hugh Sanderson 14 年之前
父节点
当前提交
49c822d26c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/cpp/_std/Reflect.hx

+ 1 - 1
std/cpp/_std/Reflect.hx

@@ -78,7 +78,7 @@
 
 	public static function deleteField( o : Dynamic, f : String ) : Bool untyped {
 		if (o==null) return false;
-		return __global__.__hxcpp_anon_remove(o,f);
+		return untyped __global__.__hxcpp_anon_remove(o,f);
 	}
 
 	public static function copy<T>( o : T ) : T {