From 03df01d81c2db0c7234833fce06fcdd7f0aae8e0 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 25 Mar 2005 04:52:21 +0000 Subject: optimized AtomList functions minor fixes for Max fixes for OSX small update of linkage styles etc. updated the docs new: FLEXT_WARN, FLEXT_ERROR macros svn path=/trunk/; revision=2642 --- externals/grill/flext/source/flmap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'externals/grill/flext/source/flmap.h') diff --git a/externals/grill/flext/source/flmap.h b/externals/grill/flext/source/flmap.h index 50c81b20..bcf67c46 100644 --- a/externals/grill/flext/source/flmap.h +++ b/externals/grill/flext/source/flmap.h @@ -94,8 +94,8 @@ protected: void *value; }; - TableAnyMap(TableAnyMap *p,int mx,Data *dt,bool o) - : owned(o),max(mx),data(dt) + TableAnyMap(TableAnyMap *p,int sz,Data *dt,bool o) + : owned(o),tsize(sz),data(dt) , n(0),parent(p),left(NULL),right(NULL) {} @@ -143,7 +143,7 @@ protected: void *_find(size_t k); const bool owned; - const int max; + const int tsize; Data *const data; int n; TableAnyMap *parent,*left,*right; -- cgit v1.2.1