Update of /cvsroot/pure-data/externals/grill/flext/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29042/source
Modified Files: flmap.h flsupport.h Log Message: 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
Index: flmap.h =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flmap.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** flmap.h 31 Mar 2005 03:52:38 -0000 1.11 --- flmap.h 7 Apr 2005 15:25:03 -0000 1.12 *************** *** 289,293 **** { public: ! virtual ~TablePtrMapOwned() { clear(); }
protected: --- 289,293 ---- { public: ! virtual ~TablePtrMapOwned() { TablePtrMapOwned<K,T,N>::clear(); }
protected:
Index: flsupport.h =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flsupport.h,v retrieving revision 1.86 retrieving revision 1.87 diff -C2 -d -r1.86 -r1.87 *** flsupport.h 31 Mar 2005 03:52:38 -0000 1.86 --- flsupport.h 7 Apr 2005 15:25:03 -0000 1.87 *************** *** 143,146 **** --- 143,148 ---- // --- special typedefs ---------------------------------------------
+ // later! + #if 0 typedef t_float Float; typedef t_int Int; *************** *** 148,151 **** --- 150,154 ---- typedef const t_symbol *Symbol; typedef t_atom Atom; + #endif
// --- buffer/array stuff -----------------------------------------