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

1 · cpprefjp · Aug. 20, 2021, 8:09 a.m.
diff --git a/reference/filesystem/path/has_parent_path.md b/reference/filesystem/path/has_parent_path.md index 22205a9a0..d336c8d9f 100644 --- a/reference/filesystem/path/has_parent_path.md +++ b/reference/filesystem/path/has_parent_path.md @@ -88,14 +88,13 @@ int main() #### 出力 ``` -"C:\foo\bar.txt" : true -"C:\foo\bar\" : true -"C:\" : true -"bar\" : true +"C:/foo/bar.txt" : true +"C:/foo/bar/" : true +"C:/" : true +"bar/" : true "bar" : false ``` -Windowsでの例は、Visual C++が正式にファイルシステムライブ...