Update of /cvsroot/cpptool/rfta/src/rftaparser
In directory sc8-pr-cvs1:/tmp/cvs-serv23272/src/rftaparser
Modified Files:
DeclarationDetailsParser.cpp
Log Message:
-- bugfix class body length
Index: DeclarationDetailsParser.cpp
===================================================================
RCS file: /cvsroot/cpptool/rfta/src/rftaparser/DeclarationDetailsParser.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DeclarationDetailsParser.cpp 29 Apr 2003 09:55:39 -0000 1.1
--- DeclarationDetailsParser.cpp 29 Apr 2003 10:29:56 -0000 1.2
***************
*** 432,436 ****
}
findNextBalanced('{','}');
! body->setLength(getCurrentLength() - startIndex - 1 ); // do not count the last '}'
}
--- 432,436 ----
}
findNextBalanced('{','}');
! body->setLength(getCurrentIndex() - startIndex - 1 ); // do not count the last '}'
}
|