Browse Source

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

Justin Donaldson 9 years ago
parent
commit
df3e84ec64
1 changed files with 1 additions and 1 deletions
  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);
 	}
 	}