Browse Source

[eval] dodge doc gen conflict with php

Simon Krajewski 8 years ago
parent
commit
89cf84760c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/eval/_std/haxe/io/BytesData.hx

+ 2 - 2
std/eval/_std/haxe/io/BytesData.hx

@@ -22,9 +22,9 @@
 package haxe.io;
 
 @:forward
-private abstract BytesDataAbstract(Bytes) from Bytes to Bytes {
+private abstract NativeBytesDataAbstract(Bytes) from Bytes to Bytes {
 	@:arrayAccess public inline function get(i:Int) return this.get(i);
 	@:arrayAccess public inline function set(i:Int, v:Dynamic) this.set(i, v);
 }
 
-typedef BytesData = BytesDataAbstract;
+typedef BytesData = NativeBytesDataAbstract;