aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flclass.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-03-31 03:52:38 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-03-31 03:52:38 +0000
commit3363199f5b126d2f0305a57f6a61fb2dd8007e10 (patch)
tree04498fea38eb3d91e455fc1cca91c8879140daeb /externals/grill/flext/source/flclass.h
parentb3cfaffbe0124254f5da70857f6c1cec59184897 (diff)
optimized AtomList functions
moved FLEXT_SHARE definition smaller changes to TableMap enhancements and more features for TableMap type new: FLEXT_WARN, FLEXT_ERROR macros svn path=/trunk/; revision=2653
Diffstat (limited to 'externals/grill/flext/source/flclass.h')
-rw-r--r--externals/grill/flext/source/flclass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/flext/source/flclass.h b/externals/grill/flext/source/flclass.h
index 351a0bcb..d15ae09d 100644
--- a/externals/grill/flext/source/flclass.h
+++ b/externals/grill/flext/source/flclass.h
@@ -659,7 +659,7 @@ protected:
~ItemSet();
};
*/
- typedef TableMap<const t_symbol *,Item,8,true> ItemSet;
+ typedef TablePtrMapOwned<const t_symbol *,Item,8> ItemSet;
/*! This class holds hashed item entries
\note not thread-safe!
@@ -775,7 +775,7 @@ protected:
~AttrDataCont();
};
*/
- typedef TableMap<const t_symbol *,AttrData,8,true> AttrDataCont;
+ typedef TablePtrMapOwned<const t_symbol *,AttrData,8> AttrDataCont;
// these outlet functions don't check for thread but send directly to the real-time system
#if FLEXT_SYS == FLEXT_SYS_PD || FLEXT_SYS == FLEXT_SYS_MAX