| 240 | } |
| 241 | |
| 242 | std::string IncludeProcessor::expandPath(const std::string& include, const std::string & includePath) |
| 243 | { |
| 244 | return endsWith(includePath, '/') ? includePath + include : includePath + "/" + include; |
| 245 | } |
| 246 | |
| 247 | |
| 248 | } // namespace globjects |
nothing calls this directly
no test coverage detected