[clang-tools-extra] [Clang-doc] Display values and comments in MD (PR #183754)
Paul Kirth via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 3 11:02:32 PST 2026
================
@@ -223,17 +237,18 @@ class FilePermissions {
enum {
// MD-PERM-LINE: *Defined at {{.*}}clang-tools-extra{{[\/]}}test{{[\/]}}clang-doc{{[\/]}}enum.cpp#[[@LINE-1]]*
// HTML-PERM-LINE: <p>Defined at line [[@LINE-2]] of file {{.*}}clang-tools-extra{{[\/]}}test{{[\/]}}clang-doc{{[\/]}}enum.cpp</p>
- Read = 1, ///> Permission to READ r
- Write = 2, ///> Permission to WRITE w
- Execute = 4 ///> Permission to EXECUTE x
+ Read = 1, ///< Permission to READ r
+ Write = 2, ///< Permission to WRITE w
+ Execute = 4 ///< Permission to EXECUTE x
----------------
ilovepi wrote:
Why are these changing? I suppose since they're incorrect. I think that's a separate change, though it doens't look as though it affected the output for any test, which is concerning.
https://github.com/llvm/llvm-project/pull/183754
More information about the cfe-commits
mailing list