aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flmap.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-03-25 04:52:21 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-03-25 04:52:21 +0000
commit03df01d81c2db0c7234833fce06fcdd7f0aae8e0 (patch)
tree5535f3040ff277459878342f556c6ccb9cf558e0 /externals/grill/flext/source/flmap.h
parent848cad880af05c8c1153c21503d434eaaf8eab95 (diff)
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
Diffstat (limited to 'externals/grill/flext/source/flmap.h')
-rw-r--r--externals/grill/flext/source/flmap.h6
1 files changed, 3 insertions, 3 deletions
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;