diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-05-19 09:18:39 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-05-19 09:18:39 -0400 |
commit | 68fe8826ddec2eefa103e4772bce35f7d1666ac3 (patch) | |
tree | fbf4678dc7904b720fa7c17535d229a08f1247d5 /src/lib/container | |
parent | 6f2b6ede1b6b70301cfd033060f999d561f57364 (diff) | |
download | tor-68fe8826ddec2eefa103e4772bce35f7d1666ac3.tar.gz tor-68fe8826ddec2eefa103e4772bce35f7d1666ac3.zip |
Doxygen: fix unbalanced groups.
Closes ticket 34255.
Diffstat (limited to 'src/lib/container')
-rw-r--r-- | src/lib/container/smartlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/container/smartlist.c b/src/lib/container/smartlist.c index eeb3bce95c..7784f83957 100644 --- a/src/lib/container/smartlist.c +++ b/src/lib/container/smartlist.c @@ -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> |