Pārlūkot izejas kodu

remove inline from String.fromCharCode

Simon Krajewski 11 gadi atpakaļ
vecāks
revīzija
8272cc4b00
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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);
 	}