summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Ecc/c.py
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@bsdio.com>2025-02-03 05:05:15 -0700
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2025-02-04 00:12:00 +0000
commit259e1f04c64b0ceac671e6570f8bbff81c29593a (patch)
treea7c419cf7a1d43715333efee293c49ad5420f03a /BaseTools/Source/Python/Ecc/c.py
parent0664c4e3b979f3b5d1279be4c250ec57938c6af3 (diff)
downloadedk2-259e1f04c64b0ceac671e6570f8bbff81c29593a.tar.gz
edk2-259e1f04c64b0ceac671e6570f8bbff81c29593a.tar.bz2
edk2-259e1f04c64b0ceac671e6570f8bbff81c29593a.zip
BaseTools: Add @verbatim as allowed Doxygen tag
Per the discussion in https://github.com/tianocore/edk2/pull/6476, update Ecc code to allow the @verbatim Doxygen tag. Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Diffstat (limited to 'BaseTools/Source/Python/Ecc/c.py')
-rw-r--r--BaseTools/Source/Python/Ecc/c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Ecc/c.py b/BaseTools/Source/Python/Ecc/c.py
index 0ebdc1a996..8e45c0730c 100644
--- a/BaseTools/Source/Python/Ecc/c.py
+++ b/BaseTools/Source/Python/Ecc/c.py
@@ -2235,7 +2235,7 @@ def CheckDoxygenCommand(FullFileName):
""" % (FileTable, DataClass.MODEL_IDENTIFIER_COMMENT, DataClass.MODEL_IDENTIFIER_FUNCTION_HEADER)
ResultSet = Db.TblFile.Exec(SqlStatement)
DoxygenCommandList = ['bug', 'todo', 'example', 'file', 'attention', 'param', 'post', 'pre', 'retval',
- 'return', 'sa', 'since', 'test', 'note', 'par', 'endcode', 'code']
+ 'return', 'sa', 'since', 'test', 'note', 'par', 'endcode', 'code', 'endverbatim', 'verbatim']
for Result in ResultSet:
CommentStr = Result[0]
CommentPartList = CommentStr.split()