浏览代码

remove inline from String.fromCharCode

Simon Krajewski 11 年之前
父节点
当前提交
8272cc4b00
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/python/_std/String.hx

+ 1 - 1
std/python/_std/String.hx

@@ -196,7 +196,7 @@ extern class String extends StringImpl {
 		If [code] is negative or has another invalid value, the result is
 		If [code] is negative or has another invalid value, the result is
 		unspecified.
 		unspecified.
 	**/
 	**/
-	public static inline function fromCharCode( code : Int ) : String {
+	public static function fromCharCode( code : Int ) : String {
 		return StringImpl.fromCharCode(code);
 		return StringImpl.fromCharCode(code);
 	}
 	}