Browse Source

Don't make StringBuf.add inline

Hugh Sanderson 12 năm trước cách đây
mục cha
commit
0eb39cca83
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      std/cpp/_std/StringBuf.hx

+ 1 - 1
std/cpp/_std/StringBuf.hx

@@ -28,7 +28,7 @@ class StringBuf {
 		b = new Array();
 	}
 
-	public inline function add( x : Dynamic ) : Void {
+	public function add( x : Dynamic ) : Void {
 		b.push(x);
 	}