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

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