Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
68fe8826
Commit
68fe8826
authored
May 19, 2020
by
Nick Mathewson
🐻
Browse files
Doxygen: fix unbalanced groups.
Closes ticket 34255.
parent
6f2b6ede
Changes
5
Hide whitespace changes
Inline
Side-by-side
changes/ticket34255_043
0 → 100644
View file @
68fe8826
o Documentation:
- Fix several doxygen warnings related to imbalanced groups.
Closes ticket 34255.
src/lib/conf/confdecl.h
View file @
68fe8826
...
...
@@ -136,11 +136,11 @@
},
/**@}*/
/* @defgroup STUB_TABLE_MACROS Internal macros: stub table declarations,
/*
*
@defgroup STUB_TABLE_MACROS Internal macros: stub table declarations,
* for use when a module is disabled.
* Implementation helpers: the regular confdecl macros expand to these
* when CONF_CONTEXT is defined to LL_TABLE. Don't use them directly.
* @{*/
* @{
*/
#define BEGIN_CONF_STRUCT__STUB_TABLE(structname) \
static const config_var_t structname##_vars[] = {
#define END_CONF_STRUCT__STUB_TABLE(structname) \
...
...
@@ -166,7 +166,7 @@
* when the macro sees us declare a configuration option "foo" of type STRING,
* it can emit `config_decl_STRING foo;`, which is an alias for `char *foo`.
*/
/**{*/
/**
@
{*/
typedef
char
*
config_decl_STRING
;
typedef
char
*
config_decl_FILENAME
;
/* Yes, "POSINT" is really an int, and not an unsigned int. For
...
...
src/lib/container/smartlist.c
View file @
68fe8826
...
...
@@ -652,7 +652,7 @@ smartlist_sort_pointers(smartlist_t *sl)
#define LEFT_CHILD(i) ( 2*(i) + 1 )
#define RIGHT_CHILD(i) ( 2*(i) + 2 )
#define PARENT(i) ( ((i)-1) / 2 )
/**
}
@ */
/** @
}
*/
/** @{ */
/** Helper macros for heaps: Given a local variable <b>idx_field_offset</b>
...
...
src/lib/string/compat_ctype.c
View file @
68fe8826
...
...
@@ -29,6 +29,7 @@ const uint32_t TOR_ISPRINT_TABLE[8] =
{
0
,
0xffffffff
,
0xffffffff
,
0x7fffffff
,
0
,
0
,
0
,
0x0
};
const
uint32_t
TOR_ISUPPER_TABLE
[
8
]
=
{
0
,
0
,
0x7fffffe
,
0
,
0
,
0
,
0
,
0
};
const
uint32_t
TOR_ISLOWER_TABLE
[
8
]
=
{
0
,
0
,
0
,
0x7fffffe
,
0
,
0
,
0
,
0
};
/**@}*/
/** Upper-casing and lowercasing tables to map characters to upper/lowercase
* equivalents. Used by tor_toupper() and tor_tolower(). */
...
...
src/lib/wallclock/time_to_tm.c
View file @
68fe8826
...
...
@@ -198,3 +198,4 @@ tor_gmtime_r_msg(const time_t *timep, struct tm *result, char **err_out)
return
correct_tm
(
0
,
timep
,
result
,
r
,
err_out
);
}
#endif
/* defined(HAVE_GMTIME_R) || ... */
/**@}*/
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment