From: <net...@us...> - 2003-05-16 09:58:46
|
Update of /cvsroot/cpptool/rfta/include/rfta/parser In directory sc8-pr-cvs1:/tmp/cvs-serv29890/include/rfta/parser Modified Files: ASTNodes.h Log Message: -- added special node type/property for the pure-specifier of function declarators (last bug in list.txt) Index: ASTNodes.h =================================================================== RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/ASTNodes.h,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** ASTNodes.h 3 May 2003 21:52:15 -0000 1.21 --- ASTNodes.h 16 May 2003 09:58:42 -0000 1.22 *************** *** 73,76 **** --- 73,77 ---- static const ASTNodeType unparsedDeclarator; + static const ASTNodeType pureSpecifier; // statement types *************** *** 245,248 **** --- 246,251 ---- static const ASTNodeProperty macroIdentifier; static const ASTNodeProperty macroParameters; + + static const ASTNodeProperty functionDeclaratorSpecifier; }; |