| 257 | } |
| 258 | |
| 259 | void AppendWindowsPortableSearchPaths(std::vector<std::string>& paths, |
| 260 | const std::string& modulePath) { |
| 261 | const std::string parent = GetParentDirectory(modulePath); |
| 262 | if (parent.empty()) { |
| 263 | return; |
| 264 | } |
| 265 | paths.push_back(parent); |
| 266 | paths.push_back(parent + "../share/opencc"); |
| 267 | } |
| 268 | #endif |
| 269 | |
| 270 | class ConfigInternal { |
no test coverage detected