소스 검색

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
 		unspecified.
 	**/
-	public static inline function fromCharCode( code : Int ) : String {
+	public static function fromCharCode( code : Int ) : String {
 		return StringImpl.fromCharCode(code);
 	}