Procházet zdrojové kódy

*** empty log message ***

Franco Ponticelli před 16 roky
rodič
revize
ced46e7c78
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      std/Reflect.hx

+ 1 - 1
std/Reflect.hx

@@ -56,7 +56,7 @@ class Reflect {
 	/**
 		Returns the field of an object, or null if [o] is not an object or doesn't have this field.
 	**/
-	public inline static function field( o : Dynamic, field : String ) : Dynamic untyped {
+	public #if !php inline #end static function field( o : Dynamic, field : String ) : Dynamic untyped {
 		#if flash9
 			return (o == null) ? null : o[field];
 		#elseif flash