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

1 · cpprefjp · Aug. 20, 2021, 8:10 a.m.
diff --git a/reference/filesystem/path/parent_path.md b/reference/filesystem/path/parent_path.md index 33f250e60..70f644153 100644 --- a/reference/filesystem/path/parent_path.md +++ b/reference/filesystem/path/parent_path.md @@ -74,12 +74,11 @@ int main() #### 出力 ``` -"C:\foo\bar.txt" : "C:\foo" -"C:\foo\bar\" : "C:\foo\bar" -"C:\" : "C:\" +"C:/foo/bar.txt" : "C:/foo" +"C:/foo/bar/" : "C:/foo/bar" +"C:/" : "C:/" ``` -Windowsでの例は、Visual C++が正式にファイルシステムライブラリをサポートしていないことから、未検証のサンプルコード・出力となって...