llvm-project/libcxx/test/std/experimental/filesystem/class.path
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
..
path.itr Fix 3 bugs in filesystem tests and implementation. 2016-06-18 04:10:23 +00:00
path.member [libcxx] [test] Strip trailing whitespace. NFC. 2017-12-07 00:50:23 +00:00
path.nonmember Implement LWG2989: path's streaming operators allow everything under the sun. 2018-02-04 03:10:53 +00:00
synop.pass.cpp [libcxx] [test] Fix comment typos, strip trailing whitespace. 2017-01-18 20:10:25 +00:00