Update of /cvsroot/pclasses/pclasses2/include/pclasses
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32756/include/pclasses
Modified Files:
StringList.h
Log Message:
- Fixed gcc 3.4 "base is a template" issue
Index: StringList.h
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/StringList.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- StringList.h 28 Apr 2005 10:15:02 -0000 1.1
+++ StringList.h 28 Apr 2005 12:24:45 -0000 1.2
@@ -46,12 +46,12 @@
StringType join(const StringType& separator) const
{
StringType ret;
- typename string_list::const_iterator i = begin();
- while(i != end())
+ typename string_list::const_iterator i = this->begin();
+ while(i != this->end())
{
ret += *i;
++i;
- if(i != end())
+ if(i != this->end())
ret += separator;
}
|