|
From: James W. W. <os...@jw...> - 2005-01-11 17:23:47
|
On Jan 11, 2005, at 5:49 AM, Roger Holmes wrote: > There seems to be a small fault with the current CVS source. > > In EE3FFR_3DMF_text.c is a routine e3fformat_3dmf_text_read_toc. > > The third line reads: > > if ( (not tocLabel.empty()) && (tocLabel.back() == '>')) > > Code Warrior 8.3 gives the message "undefined identifier 'back' " > > and then six more errors which may be consequential. Sorry about that. CodeWarrior 9 has std::string::back(), but I see that it's not in the 1998 C++ standard. I have removed the calls to std::string::back() and verified that it now works with CodeWarrior 8. -- <http://www.jwwalker.com/> |