[PD-cvs] externals/grill/pool/source main.cpp,1.2,1.3 pool.cpp,1.4,1.5

Thomas Grill xovo at users.sourceforge.net
Tue Aug 10 05:37:23 CEST 2004


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

Modified Files:
	main.cpp pool.cpp 
Log Message:
 ""

Index: main.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/source/main.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** main.cpp	22 Apr 2004 02:41:30 -0000	1.2
--- main.cpp	10 Aug 2004 03:37:20 -0000	1.3
***************
*** 1025,1029 ****
  		string fl(MakeFilename(flnm));
          if(!(xml?pl->LdDirXML(curdir,fl.c_str(),depth,mkdir):pl->LdDir(curdir,fl.c_str(),depth,mkdir))) 
! 		post("%s - %s: directory couldn't be saved",thisName(),sym);
  	}
  
--- 1025,1029 ----
  		string fl(MakeFilename(flnm));
          if(!(xml?pl->LdDirXML(curdir,fl.c_str(),depth,mkdir):pl->LdDir(curdir,fl.c_str(),depth,mkdir))) 
! 		    post("%s - %s: directory couldn't be saved",thisName(),sym);
  	}
  

Index: pool.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/source/pool.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** pool.cpp	21 Jun 2004 14:02:56 -0000	1.4
--- pool.cpp	10 Aug 2004 03:37:21 -0000	1.5
***************
*** 591,595 ****
      bool Ok() const { return tag.length() > 0; }
      bool operator ==(const C *t) const { return !tag.compare(t); }
!     void Clear() { tag.clear(); attr.clear(); }
      enum { t_start,t_end,t_empty } type;
  };
--- 591,605 ----
      bool Ok() const { return tag.length() > 0; }
      bool operator ==(const C *t) const { return !tag.compare(t); }
! 
!     void Clear() 
!     { 
! #if defined(_MSC_VER) && (_MSC_VER < 0x1200)
!         // incomplete STL implementation
!         tag = ""; attr = ""; 
! #else
!         tag.clear(); attr.clear(); 
! #endif
!     }
! 
      enum { t_start,t_end,t_empty } type;
  };





More information about the Pd-cvs mailing list