[PD-cvs] externals/grill/flext/source flqueue.cpp,1.37,1.38

Thomas Grill xovo at users.sourceforge.net
Mon Feb 13 20:40:10 CET 2006


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

Modified Files:
	flqueue.cpp 
Log Message:
fixes for gcc 3.3, changing FLEXT_USECMEM to FLEXT_USE_CMEMw
avoid trying to send empty message bundles


Index: flqueue.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flqueue.cpp,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** flqueue.cpp	15 Dec 2005 23:04:06 -0000	1.37
--- flqueue.cpp	13 Feb 2006 19:40:08 -0000	1.38
***************
*** 159,163 ****
      inline void Send() const
      {
!         FLEXT_ASSERT(msg.Ok());
  
          const Msg *m = &msg;
--- 159,163 ----
      inline void Send() const
      {
!         if(!msg.Ok()) return; // Empty!
  
          const Msg *m = &msg;





More information about the Pd-cvs mailing list