Nicolas Cannasse 19 سال پیش
والد
کامیت
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
+			;
 	}
 
 }