--- /dev/null
+pl 22:
+ - Array::add -> Array::push
\ No newline at end of file
MAJVER=1
MINVER=0
-PATCHLEVEL=21
+PATCHLEVEL=22
PACKAGENAME=flower
#PROFILEFLAG=-pg
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)
Assoc_ent_<K,V> ae;
ae.free = false;
ae.key = key;
- arr.add(ae);
+ arr.push(ae);
return arr.size() -1;
}
public:
{
Array<Real> r;
for (int j = 0; j < w; j++)
- r.add(els[n][j]);
+ r.push(els[n][j]);
return r;
}
Array<Real> r;
for (int i = 0; i<h; i++)
- r.add(els[i][n]);
+ r.push(els[i][n]);
return r;
}
while ((s = get_word()) != "")
{
- fields.add(s);
+ fields.push(s);
gobble_white();
}