Browse Source

Don't make StringBuf.add inline

Hugh Sanderson 12 years ago
parent
commit
0eb39cca83
1 changed files with 1 additions and 1 deletions
  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);
 	}