diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-06-08 14:42:15 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-06-08 14:42:15 +0000 |
commit | ce63b4c199f2d87a7407d1f92c416f1a5c1db97c (patch) | |
tree | fc11705643f86d1bd7e2a32f632f1251fde2cc8b /externals | |
parent | 2e48f415f7232c9cbd27299d10d3d6fa35d7b2f4 (diff) |
c++ conformance fix
svn path=/trunk/; revision=3131
Diffstat (limited to 'externals')
-rw-r--r-- | externals/grill/flext/source/flsupport.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h index 49607ad0..9d91ee9c 100644 --- a/externals/grill/flext/source/flsupport.h +++ b/externals/grill/flext/source/flsupport.h @@ -665,6 +665,7 @@ public: virtual void Free(); AtomListStaticBase &operator =(const AtomList &a) { AtomList::operator =(a); return *this; } + AtomListStaticBase &operator =(const AtomListStaticBase &a) { AtomList::operator =(a); return *this; } const int precnt; t_atom *const predata; @@ -684,6 +685,7 @@ public: //! Set list by another AtomList AtomListStatic &operator =(const AtomList &a) { AtomListStaticBase::operator =(a); return *this; } + AtomListStatic &operator =(const AtomListStatic &a) { AtomListStaticBase::operator =(a); return *this; } protected: t_atom pre[PRE]; }; |