Procházet zdrojové kódy

Lua : remove "inline" from Std.string, it blocks other useful code optimizations

Justin Donaldson před 9 roky
rodič
revize
df3e84ec64
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      std/lua/_std/Std.hx

+ 1 - 1
std/lua/_std/Std.hx

@@ -33,7 +33,7 @@ import lua.Boot;
 	}
 	}
 
 
 	@:keep
 	@:keep
-	inline public static function string( s : Dynamic ) : String {
+	public static function string( s : Dynamic ) : String {
 		return untyped lua.Boot.__string_rec(s);
 		return untyped lua.Boot.__string_rec(s);
 	}
 	}