| 106 | } |
| 107 | |
| 108 | void deleteVariableDeclarationList ( vector<VariableDeclaration *> * list ) { |
| 109 | if ( !list ) return; |
| 110 | for ( auto pD : *list ) |
| 111 | delete pD; |
| 112 | delete list; |
| 113 | } |
| 114 | |
| 115 | void varDeclToTypeDecl ( yyscan_t scanner, TypeDecl * pType, vector<VariableDeclaration*> * list, bool needNames ) { |
| 116 | bool anyNames = false; |
no outgoing calls
no test coverage detected