summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryelleyee <22870466+yelleyee@users.noreply.github.com>2024-03-02 03:30:36 +0800
committerGitHub <noreply@github.com>2024-03-01 11:30:36 -0800
commit09ffd3390852b046369405cf29b3a7ae424bfaa5 (patch)
tree0ab1dc65c241b232c328f0800bb1fe75d762e5e0
parentfcdf818a7779871990214cc1035bb2c36426f459 (diff)
[llvm][vfs] Remove blank comment after \endverbatim doxygen command (#83240)
Blank comment line afer \endverbatim malfunctions the doxygen parser. Check the "Detailed Description" section on https://llvm.org/doxygen/classllvm_1_1vfs_1_1RedirectingFileSystem.html Screenshot is attached below ![image](https://github.com/llvm/llvm-project/assets/22870466/35fc2444-d2f4-4638-990e-241cc14d0986)
-rw-r--r--llvm/include/llvm/Support/VirtualFileSystem.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/include/llvm/Support/VirtualFileSystem.h b/llvm/include/llvm/Support/VirtualFileSystem.h
index 1a5ea677db74..ef1fac92c2fa 100644
--- a/llvm/include/llvm/Support/VirtualFileSystem.h
+++ b/llvm/include/llvm/Support/VirtualFileSystem.h
@@ -672,7 +672,6 @@ class RedirectingFileSystemParser;
/// ]
/// }
/// \endverbatim
-///
/// The roots may be absolute or relative. If relative they will be made
/// absolute against either current working directory or the directory where
/// the Overlay YAML file is located, depending on the 'root-relative'
@@ -704,7 +703,6 @@ class RedirectingFileSystemParser;
/// 'contents': [ <file or directory entries> ]
/// }
/// \endverbatim
-///
/// The default attributes for such virtual directories are:
/// \verbatim
/// MTime = now() when created
@@ -713,7 +711,6 @@ class RedirectingFileSystemParser;
/// Size = 0
/// UniqueID = unspecified unique value
/// \endverbatim
-///
/// When a path prefix matches such a directory, the next component in the path
/// is matched against the entries in the 'contents' array.
///
@@ -726,7 +723,6 @@ class RedirectingFileSystemParser;
/// 'external-contents': <path to external directory>
/// }
/// \endverbatim
-///
/// and inherit their attributes from the external directory. When a path
/// prefix matches such an entry, the unmatched components are appended to the
/// 'external-contents' path, and the resulting path is looked up in the
@@ -741,7 +737,6 @@ class RedirectingFileSystemParser;
/// 'external-contents': <path to external file>
/// }
/// \endverbatim
-///
/// Their attributes and file contents are determined by looking up the file at
/// their 'external-contents' path in the external file system.
///