Browse Source

added @:noUsing to StringTools.isEof (fixed issue #1712)

Simon Krajewski 12 years ago
parent
commit
aa8aeb7b51
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/StringTools.hx

+ 1 - 1
std/StringTools.hx

@@ -363,7 +363,7 @@ class StringTools {
 	/*
 	/*
 		Tells if [c] represents the end-of-file (EOF) character.
 		Tells if [c] represents the end-of-file (EOF) character.
 	*/
 	*/
-	public static inline function isEof( c : Int ) : Bool {
+	@:noUsing public static inline function isEof( c : Int ) : Bool {
 		#if (flash9 || cpp)
 		#if (flash9 || cpp)
 		return c == 0;
 		return c == 0;
 		#elseif flash8
 		#elseif flash8