| 68 | } |
| 69 | |
| 70 | static std::list<TSTRING>* MergeIntoList( std::list<TSTRING>* plistLHS, const std::list<TSTRING>* plistRHS ) |
| 71 | { |
| 72 | for( std::list<TSTRING>::const_iterator i = plistRHS->begin(); i != plistRHS->end(); i++ ) |
| 73 | plistLHS->push_back( *i ); |
| 74 | return plistLHS; |
| 75 | } |
| 76 | |
| 77 | extern YYSTYPE yylval; |
| 78 | #if YYDEBUG |
no test coverage detected