Explorar el Código

Don't make StringBuf.add inline

Hugh Sanderson hace 12 años
padre
commit
0eb39cca83
Se han modificado 1 ficheros con 1 adiciones y 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();
 		b = new Array();
 	}
 	}
 
 
-	public inline function add( x : Dynamic ) : Void {
+	public function add( x : Dynamic ) : Void {
 		b.push(x);
 		b.push(x);
 	}
 	}