浏览代码

Don't make StringBuf.add inline

Hugh Sanderson 12 年之前
父节点
当前提交
0eb39cca83
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);
 	}