| 1288 | } |
| 1289 | |
| 1290 | void addString(std::string& ifileName, const char* itext) |
| 1291 | { |
| 1292 | assert(count < maxCount); |
| 1293 | fileName[count] = ifileName; |
| 1294 | text[count] = itext; |
| 1295 | fileNameList[count] = fileName[count].c_str(); |
| 1296 | ++count; |
| 1297 | } |
| 1298 | }; |
| 1299 | |
| 1300 | // Writes a string into a depfile, escaping some special characters following the Makefile rules. |
no test coverage detected