From e1be380510a42f13ce1fd55a29705aaf9e8c8da8 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 9 Aug 2005 11:02:16 +0000 Subject: don't use explicit so that STL can be used on OSX use "strip -x" instead of -W,-l option to strip binaries only strip release build svn path=/trunk/; revision=3415 --- externals/grill/flext/source/flsupport.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'externals/grill/flext/source/flsupport.h') diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h index a439b47b..b1ec43cd 100644 --- a/externals/grill/flext/source/flsupport.h +++ b/externals/grill/flext/source/flsupport.h @@ -573,11 +573,11 @@ public: { public: //! Construct list - explicit AtomList(): cnt(0),lst(NULL) {} + AtomList(): cnt(0),lst(NULL) {} //! Construct list - explicit AtomList(int argc,const t_atom *argv = NULL): cnt(0),lst(NULL) { operator()(argc,argv); } + explicit AtomList(int argc,const t_atom *argv = NULL): cnt(0),lst(NULL) { operator()(argc,argv); } //! Construct list - explicit AtomList(const AtomList &a): cnt(0),lst(NULL) { operator =(a); } + AtomList(const AtomList &a): cnt(0),lst(NULL) { operator =(a); } //! Destroy list virtual ~AtomList(); -- cgit v1.2.1