Browse Source

[cs] fix inline bug in Type

Caue Waneck 13 years ago
parent
commit
8375f813ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/cs/_std/Type.hx

+ 1 - 1
std/cs/_std/Type.hx

@@ -309,7 +309,7 @@ enum ValueType {
 		else
 			return ((haxe.lang.Enum) e).index;
 	')
-	public inline static function enumIndex( e : EnumValue ) : Int  untyped
+	public static function enumIndex( e : EnumValue ) : Int  untyped
 	{
 		return e.index;
 	}