llvm-project/libcxx/test/std/experimental/filesystem/class.path/path.nonmember
Eric Fiselier be71d336bd Implement LWG2989: path's streaming operators allow everything under the sun.
Because path can be constructed from a ton of different types, including string
and wide strings, this caused it's streaming operators to suck up all sorts
of silly types via silly conversions. For example:

using namespace std::experimental::filesystem::v1;
std::wstring w(L"wide");
std::cout << w; // converts to path.

This patch tentatively adopts the resolution to LWG2989 and fixes the issue
by making the streaming operators friends of path.

llvm-svn: 324189
2018-02-04 03:10:53 +00:00
..
append_op.pass.cpp
comparison_ops_tested_elsewhere.pass.cpp
hash_value_tested_elswhere.pass.cpp
path.factory.pass.cpp
path.io.pass.cpp Implement LWG2989: path's streaming operators allow everything under the sun. 2018-02-04 03:10:53 +00:00
path.io.unicode_bug.pass.cpp
swap.pass.cpp