]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.22
authorfred <fred>
Fri, 31 Jan 1997 16:34:17 +0000 (16:34 +0000)
committerfred <fred>
Fri, 31 Jan 1997 16:34:17 +0000 (16:34 +0000)
flower/NEWS [new file with mode: 0644]
flower/Variables.make
flower/assoc.hh
flower/smat.cc
flower/textdb.cc

diff --git a/flower/NEWS b/flower/NEWS
new file mode 100644 (file)
index 0000000..ae66f7d
--- /dev/null
@@ -0,0 +1,2 @@
+pl 22:
+       - Array::add -> Array::push
\ No newline at end of file
index 0c389c10eff7db9c48bf217c1785bb12e37b579c..c417e74140268f210e0c882a8357a55aa36d6660 100644 (file)
@@ -1,6 +1,6 @@
 MAJVER=1
 MINVER=0
-PATCHLEVEL=21
+PATCHLEVEL=22
 PACKAGENAME=flower
 
 #PROFILEFLAG=-pg
@@ -33,5 +33,5 @@ obs=$(cc:.cc=.o)
 staticlib=libflower.a
 ALLSOURCES=$(hh) $(cc) $(inl) $(templatecc) 
 DFILES=$(ALLSOURCES) Makefile Variables.make make_version\
-       Sources.make TODO README
+       Sources.make TODO README NEWS
 DDIR=$(DNAME)
index c21c4fc6bc370a2b19b8e8e7bca9028c4a3d6878..4e0594519f631c5b4c59b528f010623194ca34ba 100644 (file)
@@ -43,7 +43,7 @@ struct Assoc {
        Assoc_ent_<K,V> ae;
        ae.free = false;
        ae.key = key;
-       arr.add(ae);
+       arr.push(ae);
        return arr.size() -1;
     }
 public:
index 9c3b8e2a979eb8a9b76b0d8764ac7262cd81d7fc..f2143507b654766ecdd99557c6079237f0c8dc98 100644 (file)
@@ -157,7 +157,7 @@ Full_storage::row(int n) const
 {
     Array<Real> r;
     for (int j = 0; j < w; j++)
-       r.add(els[n][j]);
+       r.push(els[n][j]);
     return r;
 }
 
@@ -167,7 +167,7 @@ Full_storage::column(int n) const
     
     Array<Real> r;
     for (int i = 0; i<h; i++)
-       r.add(els[i][n]);
+       r.push(els[i][n]);
     return r;
 }
 
index d94b64ab7980eaef3423123d831d26c1632efd56..eefea162405ca9849553805c7f53f6b2c371d12f 100644 (file)
@@ -32,7 +32,7 @@ Text_db::get_record()
        
        while ((s = get_word()) != "")
            {
-           fields.add(s);      
+           fields.push(s);     
            gobble_white();
            }