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

1 · cpprefjp · Aug. 20, 2021, 8:10 a.m.
diff --git a/reference/filesystem/path/op_string_type.md b/reference/filesystem/path/op_string_type.md index c7f81437d..d804d4e42 100644 --- a/reference/filesystem/path/op_string_type.md +++ b/reference/filesystem/path/op_string_type.md @@ -52,7 +52,6 @@ int main() { fs::path p = "foo/bar"; - // ディレクトリ区切り文字が"/"から"\\"に変換され、 // UTF-16エンコーディングで返る const std::wstring& s = p; std::wcout << s << std::endl; @@ -61,7 +60,7 @@ int main() #### 出力 ``` -foo\bar +foo/bar ``` ## バージョン @...