]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.22
authorfred <fred>
Fri, 31 Jan 1997 16:25:12 +0000 (16:25 +0000)
committerfred <fred>
Fri, 31 Jan 1997 16:25:12 +0000 (16:25 +0000)
flower/sstack.hh
flower/varray.hh

index 11c39a0f41fb891372f621310f8b18b149ae2701..adbc66b4e570c80b98bd7f1015723fac6419311e 100644 (file)
@@ -19,7 +19,6 @@ struct sstack : Array<T> {
         Array<T>::pop();
        return l;
     }
-    void push(T l) { add(l); }
 };
 /**
   Same as for #Array# goes here.
index bfc6b984fa7be4836ef746f3f69d8e75711b5861..40e76a3dc72bc220420864d40837dd850302d1e0 100644 (file)
@@ -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);