Преглед изворни кода

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