[llvm] [llvm][vfs] Remove blank comment after \endverbatim doxygen command (PR #83240)

via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 28 17:40:11 PST 2024


https://github.com/yelleyee updated https://github.com/llvm/llvm-project/pull/83240

>From 8c2a27853d8cca9dc9b2b359e96a7ac936a06132 Mon Sep 17 00:00:00 2001
From: yelleyee <feelyeling at gmail.com>
Date: Wed, 28 Feb 2024 09:15:04 +0000
Subject: [PATCH] [llvm][vfs] Remove blank comment after \endverbatim doxygen
 command   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

---
 llvm/include/llvm/Support/VirtualFileSystem.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/llvm/include/llvm/Support/VirtualFileSystem.h b/llvm/include/llvm/Support/VirtualFileSystem.h
index 1a5ea677db74da..ef1fac92c2fa4a 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.
 ///



More information about the llvm-commits mailing list