aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flclass.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-04-16 21:35:06 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-04-16 21:35:06 +0000
commita7389a1405e6c160989e3d7097813b55e08e0f8d (patch)
tree9234122a98f9b8f41699e58e168feb10dda6bf03 /externals/grill/flext/source/flclass.h
parent0792fe88f2ad1d4f0bbc2c02c0fe6bb5782c31b6 (diff)
updated templates
changed template parameter of TableMap fixes for OSX fixed problems with symbol binding svn path=/trunk/; revision=2771
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 d15ae09d..cf11bdb8 100644
--- a/externals/grill/flext/source/flclass.h
+++ b/externals/grill/flext/source/flclass.h
@@ -659,7 +659,7 @@ protected:
~ItemSet();
};
*/
- typedef TablePtrMapOwned<const t_symbol *,Item,8> 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 TablePtrMapOwned<const t_symbol *,AttrData,8> 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