From 46add18519d4ce69caec21d717589b425e931c02 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 31 Jan 1997 16:34:17 +0000 Subject: [PATCH] flower-1.0.22 --- flower/NEWS | 2 ++ flower/Variables.make | 4 ++-- flower/assoc.hh | 2 +- flower/smat.cc | 4 ++-- flower/textdb.cc | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 flower/NEWS diff --git a/flower/NEWS b/flower/NEWS new file mode 100644 index 0000000000..ae66f7dbc3 --- /dev/null +++ b/flower/NEWS @@ -0,0 +1,2 @@ +pl 22: + - Array::add -> Array::push \ No newline at end of file diff --git a/flower/Variables.make b/flower/Variables.make index 0c389c10ef..c417e74140 100644 --- a/flower/Variables.make +++ b/flower/Variables.make @@ -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) diff --git a/flower/assoc.hh b/flower/assoc.hh index c21c4fc6bc..4e0594519f 100644 --- a/flower/assoc.hh +++ b/flower/assoc.hh @@ -43,7 +43,7 @@ struct Assoc { Assoc_ent_ ae; ae.free = false; ae.key = key; - arr.add(ae); + arr.push(ae); return arr.size() -1; } public: diff --git a/flower/smat.cc b/flower/smat.cc index 9c3b8e2a97..f2143507b6 100644 --- a/flower/smat.cc +++ b/flower/smat.cc @@ -157,7 +157,7 @@ Full_storage::row(int n) const { Array 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 r; for (int i = 0; i