如何在doxygen中删除生成输出中的行引用?

dub*_*nde 8 doxygen

我想删除行看如下,但我仍然想要返回源代码浏览

Definition at line 377 of file xxx.h. 
Run Code Online (Sandbox Code Playgroud)

我在doxygen配置文件中尝试了以下两个,但这些只删除了类型的交叉引用

# If the REFERENCES_RELATION tag is set to YES 
# then for each documented function all documented entities 
# called/used by that function will be listed.

REFERENCES_RELATION    = NO

# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 
# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 
# link to the source code.  Otherwise they will link to the documentation.

REFERENCES_LINK_SOURCE = NO
Run Code Online (Sandbox Code Playgroud)

更新:我只是尝试设置以下并似乎做了工作,但等待确认这是否是实现我想要的正确方法

SOURCE_BROWSER         = NO
Run Code Online (Sandbox Code Playgroud)

dub*_*nde 12

得到它了

SOURCE_BROWSER = NO