2
0
Nicolas Cannasse 19 жил өмнө
parent
commit
eea66b6352
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      std/Reflect.hx

+ 2 - 1
std/Reflect.hx

@@ -144,11 +144,12 @@ class Reflect {
 
 	public static function deleteField( o : Dynamic, f : String ) {
 		#if flash
-			untyped __delete__(o,f);
+			untyped __delete__(o,f)
 		#else neko
 			untyped __dollar__objremove(o,f.__s)
 		#else error
 		#end
+			;
 	}
 
 }