aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-04-07 15:25:03 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-04-07 15:25:03 +0000
commit92c23bbbc6ba7546cc9c4e6393ed1850db12393b (patch)
treed3288fc98225ce10103e4af467d3771204c6cc59 /externals/grill/flext
parent8a0ff7683227964f6aad09e1be750ce9b3821243 (diff)
no more static assignment of symbols (problems with Metrowerks)
updated build system fix for mingw win32 threading model included fixes for Max compilation fixed timer1 tutorial project better templates, some minor changes moved FLEXT_SHARE definition temporary fixes for VASP compilation new: FLEXT_WARN, FLEXT_ERROR macros updates for batch mode fixed flext::Timer::At method updated the docs fixed strange gcc 3.4 compilation problem build system: added profiler mode, more fixes small optimizations added shared library build facility for Windows optimized AtomList functions fixes for OSX oops, forgot about SIMD for Windows fixed compilation with SIMD instructions fixed bugs in SIMD code for non-power-of-2 lengths fixed shared library versioning smaller changes to TableMap svn path=/trunk/; revision=2688
Diffstat (limited to 'externals/grill/flext')
-rw-r--r--externals/grill/flext/source/flmap.h2
-rw-r--r--externals/grill/flext/source/flsupport.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flmap.h b/externals/grill/flext/source/flmap.h
index c0602378..fed5390a 100644
--- a/externals/grill/flext/source/flmap.h
+++ b/externals/grill/flext/source/flmap.h
@@ -288,7 +288,7 @@ class TablePtrMapOwned
: public TablePtrMap<K,T,N>
{
public:
- virtual ~TablePtrMapOwned() { clear(); }
+ virtual ~TablePtrMapOwned() { TablePtrMapOwned<K,T,N>::clear(); }
protected:
virtual void Free(void *ptr)
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index ff27e97c..c1f9d8f3 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -142,11 +142,14 @@ public:
// --- special typedefs ---------------------------------------------
+// later!
+#if 0
typedef t_float Float;
typedef t_int Int;
typedef t_sample Sample;
typedef const t_symbol *Symbol;
typedef t_atom Atom;
+#endif
// --- buffer/array stuff -----------------------------------------