aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flsupport.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-03-16 04:56:38 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-03-16 04:56:38 +0000
commit4d4f8d07f3341e8309c1b066263a40227664bc3d (patch)
treeb54c8807e28f73f83b5704c3f91d0fc012c98f83 /externals/grill/flext/source/flsupport.h
parent31a2d9dcc2b3a519033918e180f81c4e7b9f8e7e (diff)
static method map
minor other things fixes for OSX fix for gcc svn path=/trunk/; revision=2629
Diffstat (limited to 'externals/grill/flext/source/flsupport.h')
-rw-r--r--externals/grill/flext/source/flsupport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index 7aef0c85..2491c035 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -646,6 +646,9 @@ public:
AtomListStatic(int argc,const t_atom *argv = NULL): AtomListStaticBase(PRE,pre) { operator()(argc,argv); }
//! Construct list
AtomListStatic(const AtomList &a): AtomListStaticBase(PRE,pre) { operator =(a); }
+
+ //! Set list by another AtomList
+ AtomListStatic &operator =(const AtomListStatic &a) { AtomListStaticBase::operator =(a); return *this; }
protected:
t_atom pre[PRE];
};