| 142 | // They pre-date operations_unit_test.cpp |
| 143 | |
| 144 | void overload_tests() |
| 145 | { |
| 146 | std::cout << "overload_tests..." << std::endl; |
| 147 | |
| 148 | fs::exists(p1); |
| 149 | fs::exists("foo"); |
| 150 | fs::exists(std::string("foo")); |
| 151 | |
| 152 | fs::exists(p1 / path("foo")); |
| 153 | fs::exists(p1 / "foo"); |
| 154 | fs::exists(p1 / std::string("foo")); |
| 155 | |
| 156 | fs::exists("foo" / p1); |
| 157 | fs::exists(std::string("foo") / p1); |
| 158 | |
| 159 | p4 /= path("foo"); |
| 160 | p4 /= "foo"; |
| 161 | p4 /= std::string("foo"); |
| 162 | } |
| 163 | |
| 164 | // iterator_tests ------------------------------------------------------------------// |
| 165 | |