Преглед на файлове

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);
 	}