| 110 | } |
| 111 | |
| 112 | static bool addPathsToSet(const std::string& fileName, std::set<std::string>& set) |
| 113 | { |
| 114 | std::list<std::string> templist; |
| 115 | if (!addIncludePathsToList(fileName, templist)) |
| 116 | return false; |
| 117 | set.insert(templist.cbegin(), templist.cend()); |
| 118 | return true; |
| 119 | } |
| 120 | |
| 121 | namespace { |
| 122 | class XMLErrorMessagesLogger : public ErrorLogger |
no test coverage detected