瀏覽代碼

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

Justin Donaldson 9 年之前
父節點
當前提交
df3e84ec64
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/lua/_std/Std.hx

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

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