Explorar o código

Don't make StringBuf.add inline

Hugh Sanderson %!s(int64=12) %!d(string=hai) anos
pai
achega
0eb39cca83
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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);
 	}