From ce63b4c199f2d87a7407d1f92c416f1a5c1db97c Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 8 Jun 2005 14:42:15 +0000 Subject: c++ conformance fix svn path=/trunk/; revision=3131 --- externals/grill/flext/source/flsupport.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'externals/grill') 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]; }; -- cgit v1.2.1