From 31a2d9dcc2b3a519033918e180f81c4e7b9f8e7e Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 15 Mar 2005 04:56:36 +0000 Subject: new data type flext::AtomListStatic using pre-allocated space if possible fixes for OSX replaced memory-intensive STL maps by custom-made vector/map-container fix for gcc strangeness no more static assignment of symbols (problems with Metrowerks) small fix for gcc fixed bugs in SIMD code for non-power-of-2 lengths fixes for attribute editor (to deal with large dialogs) svn path=/trunk/; revision=2628 --- externals/grill/flext/source/flclass.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'externals/grill/flext/source/flclass.h') diff --git a/externals/grill/flext/source/flclass.h b/externals/grill/flext/source/flclass.h index 4fcf64a9..06c48927 100644 --- a/externals/grill/flext/source/flclass.h +++ b/externals/grill/flext/source/flclass.h @@ -650,6 +650,7 @@ protected: Item *nxt; }; +/* class ItemSet: public DataMap { @@ -657,6 +658,8 @@ protected: ItemSet(); ~ItemSet(); }; +*/ + typedef TableMap ItemSet; /*! This class holds hashed item entries \note not thread-safe! @@ -763,6 +766,7 @@ protected: int flags; }; +/* class AttrDataCont: public DataMap { @@ -770,6 +774,8 @@ protected: AttrDataCont(); ~AttrDataCont(); }; +*/ + typedef TableMap 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 -- cgit v1.2.1