From: fred Date: Fri, 31 Jan 1997 16:25:12 +0000 (+0000) Subject: flower-1.0.22 X-Git-Tag: release/1.5.59~6374 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=54d1bec8cdc2e2f1346fd758e1441a266b10f444;p=lilypond.git flower-1.0.22 --- diff --git a/flower/sstack.hh b/flower/sstack.hh index 11c39a0f41..adbc66b4e5 100644 --- a/flower/sstack.hh +++ b/flower/sstack.hh @@ -19,7 +19,6 @@ struct sstack : Array { Array::pop(); return l; } - void push(T l) { add(l); } }; /** Same as for #Array# goes here. diff --git a/flower/varray.hh b/flower/varray.hh index bfc6b984fa..40e76a3dc7 100644 --- a/flower/varray.hh +++ b/flower/varray.hh @@ -91,7 +91,7 @@ public: } /// add to the end of array - void add(T x) { + void push(T x) { if (size_ == max) remax(2*max + 1);