u8string -- Merge pull request #892 from 0xbadfca11/patch-1

1 · cpprefjp · Aug. 20, 2021, 8:10 a.m.
diff --git a/reference/filesystem/path/u8string.md b/reference/filesystem/path/u8string.md index 4239e3a49..e8e2e6c7b 100644 --- a/reference/filesystem/path/u8string.md +++ b/reference/filesystem/path/u8string.md @@ -59,7 +59,7 @@ int main() auto s = p.u8string(); // システムのマルチバイト文字コードからUTF-8に変換されたパス文字列が返される - assert(s == u8"foo\\bar"); + assert(s == u8"foo/bar"); } ``` * p.u8string()[color ff0000] @@ -68,7 +68,6 @@ int main() ``` ``` -Windowsでの例は、Visual C++が正式にファイルシステムライブラリをサポートし...