From 259e1f04c64b0ceac671e6570f8bbff81c29593a Mon Sep 17 00:00:00 2001 From: Rebecca Cran Date: Mon, 3 Feb 2025 05:05:15 -0700 Subject: 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 --- BaseTools/Source/Python/Ecc/c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BaseTools/Source/Python/Ecc/c.py') 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() -- cgit v1.2.3