Przeglądaj źródła

remove inline from String.fromCharCode

Simon Krajewski 11 lat temu
rodzic
commit
8272cc4b00
1 zmienionych plików z 1 dodań i 1 usunięć
  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);
 	}