Search results

  1. F

    istream illegal operands

    Thanks again! I recompiled everything as c++ and it wasn't as difficult as I thought. The program links and it didn't seem to break anything, but there is a problem in the vector code -- crashes the program. To debug this I really need a working debugger -- sigh! Metrowerks' customer support...
  2. F

    broken debugger -- help needed urgently

    Something that's been bothering me greatly since I started this new CW project is having no debugger in CodeWarrrior! The CW debugger works on Windows but I don't know it it ever worked on Macintosh. (I have both system versions.) I had to reconfigure CW to compile Carbon programs, and in the...
  3. F

    istream illegal operands

    Thanks! That helped. I inserted some char strings like you suggested, and all the cpp files now compile, but I get a lot of warnings like Warning : inline function call 'Vec4::Vec4(const Vec3 &, double)' not inlined qslim.cpp line 76 } Also the entry function to the cpp files won't...
  4. F

    istream illegal operands

    I'm trying to port some code from Windows to Macintosh using Codewarrior9 and Carbon. For the following code: inline istream& operator>>(istream& in, Vec3& v) { return in >> "[" >> v[0] >> v[1] >> v[2] >> "]"; } I receive this error message: Error : illegal operands...
Back
Top