[PD-cvs] externals/grill/flext/source flsupport.h,1.92,1.93

Thomas Grill xovo at users.sourceforge.net
Wed Jun 8 16:42:18 CEST 2005


Update of /cvsroot/pure-data/externals/grill/flext/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9251/source

Modified Files:
	flsupport.h 
Log Message:
c++ conformance fix


Index: flsupport.h
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flsupport.h,v
retrieving revision 1.92
retrieving revision 1.93
diff -C2 -d -r1.92 -r1.93
*** flsupport.h	8 Jun 2005 11:41:21 -0000	1.92
--- flsupport.h	8 Jun 2005 14:42:15 -0000	1.93
***************
*** 666,669 ****
--- 666,670 ----
  
          AtomListStaticBase &operator =(const AtomList &a) { AtomList::operator =(a); return *this; }
+         AtomListStaticBase &operator =(const AtomListStaticBase &a) { AtomList::operator =(a); return *this; }
  
          const int precnt;
***************
*** 685,688 ****
--- 686,690 ----
  		//! 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];





More information about the Pd-cvs mailing list