diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-05 12:43:38 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-05 12:43:38 -0500 |
commit | de4ffebcf0a8dc281c603ef871af392b8324dc30 (patch) | |
tree | 284959e57b4285d393e03178fdf52508594831a5 /Doxyfile.in | |
parent | 36bceacdcdc6e7ed666cb4bbbf8cc76132f89bbd (diff) | |
download | tor-de4ffebcf0a8dc281c603ef871af392b8324dc30.tar.gz tor-de4ffebcf0a8dc281c603ef871af392b8324dc30.zip |
Doxygen: set HIDE_SCOPE_NAMES.
This option tells doxygen to describe a member "member" of a struct
"container" as "member", not "container::member". C doesn't use
the :: syntax, so this should help us with readability.
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index d0ff030ae0..2e1a6d0c23 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -558,7 +558,7 @@ CASE_SENSE_NAMES = YES # scope will be hidden. # The default value is: NO. -HIDE_SCOPE_NAMES = NO +HIDE_SCOPE_NAMES = YES # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to |