Update of /cvsroot/pure-data/externals/tb/sc4pd/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12940/source
Modified Files: support.cpp support.hpp Log Message: fixed compiling failure ... added support for flext build system ...
thnx thomas
Index: support.hpp =================================================================== RCS file: /cvsroot/pure-data/externals/tb/sc4pd/source/support.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** support.hpp 11 Sep 2004 08:10:45 -0000 1.10 --- support.hpp 2 May 2005 14:48:24 -0000 1.11 *************** *** 48,55 ****
/* for argument parsing */ ! bool sc_add (flext::AtomList a); ! float sc_getfloatarg (flext::AtomList a,int i); ! bool sc_ar(flext::AtomList a); ! bool sc_inv(flext::AtomList a);
--- 48,55 ----
/* for argument parsing */ ! bool sc_add (flext::AtomList& a); ! float sc_getfloatarg (flext::AtomList& a,int i); ! bool sc_ar(flext::AtomList& a); ! bool sc_inv(flext::AtomList& a);
Index: support.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/tb/sc4pd/source/support.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** support.cpp 11 Sep 2004 08:10:45 -0000 1.6 --- support.cpp 2 May 2005 14:48:24 -0000 1.7 *************** *** 40,44 ****
! bool sc_add (flext::AtomList a) { for (int i = 0; i!=a.Count();++i) --- 40,44 ----
! bool sc_add (flext::AtomList& a) { for (int i = 0; i!=a.Count();++i) *************** *** 55,59 **** }
! float sc_getfloatarg (flext::AtomList a,int i) { if (a.Count() > 0 && a.Count() > i) --- 55,59 ---- }
! float sc_getfloatarg (flext::AtomList& a,int i) { if (a.Count() > 0 && a.Count() > i) *************** *** 63,67 **** }
! bool sc_ar(flext::AtomList a) { for (int i = 0; i!=a.Count();++i) --- 63,67 ---- }
! bool sc_ar(flext::AtomList& a) { for (int i = 0; i!=a.Count();++i) *************** *** 78,82 **** }
! bool sc_inv(flext::AtomList a) { for (int i = 0; i!=a.Count();++i) --- 78,82 ---- }
! bool sc_inv(flext::AtomList& a) { for (int i = 0; i!=a.Count();++i)