diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-05-02 16:46:38 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-05-02 16:46:38 +0100 |
commit | d727fdc42bbf1ea23bfda42b9c0c87c2cb8e93b9 (patch) | |
tree | 6d1eb60543acafc771d84a758577a74d4e839122 /libstdc++-v3/include/std/filesystem | |
parent | 3084625d39d4d353f55c3aed6959bce6ec2a4a79 (diff) | |
download | gcc-d727fdc42bbf1ea23bfda42b9c0c87c2cb8e93b9.zip gcc-d727fdc42bbf1ea23bfda42b9c0c87c2cb8e93b9.tar.gz gcc-d727fdc42bbf1ea23bfda42b9c0c87c2cb8e93b9.tar.bz2 |
Improve docs for C++17 Filesystem library
* include/bits/fs_dir.h: Fix/improve doxygen markup.
* include/bits/fs_fwd.h: Likewise.
* include/bits/fs_ops.h: Likewise.
* include/bits/fs_path.h: Likewise.
* include/std/filesystem: Likewise.
From-SVN: r270811
Diffstat (limited to 'libstdc++-v3/include/std/filesystem')
-rw-r--r-- | libstdc++-v3/include/std/filesystem | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/filesystem b/libstdc++-v3/include/std/filesystem index 9b724a7..52ef476 100644 --- a/libstdc++-v3/include/std/filesystem +++ b/libstdc++-v3/include/std/filesystem @@ -22,8 +22,9 @@ // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // <http://www.gnu.org/licenses/>. -/** @file filesystem +/** @file include/filesystem * This is a Standard C++ Library header. + * @ingroup filesystem */ #ifndef _GLIBCXX_FILESYSTEM @@ -33,6 +34,13 @@ #if __cplusplus >= 201703L +/** + * @defgroup filesystem File System + * + * Utilities for performing operations on file systems and their components, + * such as paths, regular files, and directories. + */ + #include <bits/fs_fwd.h> #include <bits/fs_path.h> #include <bits/fs_dir.h> |