| 297 | // ---- join_path -------------------------------------------------------------- |
| 298 | |
| 299 | std::string join_path(const std::string& one, const std::string& two) { |
| 300 | return (fs::path(one) / two).string(); |
| 301 | } |
| 302 | |
| 303 | // Legacy implementation kept for reference (powerpc / pre-NDK-r23 Android): |
| 304 | // |
no outgoing calls
no test coverage detected