标签: c++ c++17
定义了二进制concat运算符,而没有定义二进制附加。为什么?
std::filesystem::path p1("/path/to/folder"); std::filesystem::path p2("relative/path"); auto p3 = p1 / p2; // not prob auto p4 = p1 + p2; // ERR