| 307 | // They pre-date operations_unit_test.cpp |
| 308 | |
| 309 | void overload_tests() |
| 310 | { |
| 311 | std::cout << "overload_tests..." << std::endl; |
| 312 | |
| 313 | fs::exists(p1); |
| 314 | fs::exists("foo"); |
| 315 | fs::exists(std::string("foo")); |
| 316 | |
| 317 | fs::exists(p1 / path("foo")); |
| 318 | fs::exists(p1 / "foo"); |
| 319 | fs::exists(p1 / std::string("foo")); |
| 320 | |
| 321 | fs::exists("foo" / p1); |
| 322 | fs::exists(std::string("foo") / p1); |
| 323 | |
| 324 | p4 /= path("foo"); |
| 325 | p4 /= "foo"; |
| 326 | p4 /= std::string("foo"); |
| 327 | } |
| 328 | |
| 329 | // iterator_tests ------------------------------------------------------------------// |
| 330 | |