From: <bl...@us...> - 2003-05-05 08:03:33
|
Update of /cvsroot/cpptool/rfta/bug In directory sc8-pr-cvs1:/tmp/cvs-serv30629/bug Modified Files: List.txt Log Message: * added some 'minor' parser bug I found when inspecting ast/ogre/ogrebspscenemanager.cpp.html Index: List.txt =================================================================== RCS file: /cvsroot/cpptool/rfta/bug/List.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** List.txt 4 May 2003 07:35:06 -0000 1.7 --- List.txt 5 May 2003 08:03:31 -0000 1.8 *************** *** 67,70 **** --- 67,87 ---- => parse up to next ';' instead of '{' --- + Bad local identifier parsing (ogre/ogrebspscenemanager.cpp.html) + mPendingGeometry.vertexStride = sizeof(float) * 7 + sizeof(int); + mPendingGeometry.pIndexes = new unsigned short[mLevel->mNumElements]; + (unsigned long*)mAABGeometry.pDiffuseColour + mAABGeometry.numVertices + mlpD3DDevice = NULL + => 'float', 'int', 'short', 'long', 'NULL' parsed as local-scope-indentifier; + --- + Bad variable-decl-expression range (ogre/ogrebspscenemanager.cpp.html) + - in BspSceneManager::~BspSceneManager() + delete mBspResMgr; + - in ? + std::pair<MaterialFaceGroupMap::iterator, bool> matgrpi; + - in addBoudingBox(): + unsigned long visibleColour; + => range extends to the end of the compound statement + --- + |