Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: bump breathe to >=4.23.0 and misc fixes #29483

Merged
merged 3 commits into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .known-issues/doc/anonymous.conf

This file was deleted.

1 change: 1 addition & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@
"c": "c",
}
breathe_separate_member_pages = True
breathe_show_enumvalue_initializer = True

# Qualifiers to a function are causing Sphihx/Breathe to warn about
# Error when parsing function declaration and more. This is a list
Expand Down
6 changes: 3 additions & 3 deletions include/sys/util_macro.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,19 +274,19 @@ extern "C" {

/** Expands to the first argument.
*
* @deprecated Use GET_ARG_N instead.
* @deprecated Use GET_ARG_N() instead.
*/
#define GET_ARG1(...) GET_ARG_N(1, __VA_ARGS__)

/** Expands to the second argument.
*
* @deprecated Use GET_ARG_N instead.
* @deprecated Use GET_ARG_N() instead.
*/
#define GET_ARG2(...) __DEPRECATED GET_ARG_N(2, __VA_ARGS__)

/** Expands to all arguments except the first one.
*
* @deprecated Use GET_ARGS_LESS_N instead.
* @deprecated Use GET_ARGS_LESS_N() instead.
*/
#define GET_ARGS_LESS_1(...) __DEPRECATED GET_ARGS_LESS_N(1, __VA_ARGS__)

Expand Down
2 changes: 1 addition & 1 deletion scripts/requirements-doc.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DOC: used to generate docs

breathe>=4.21.0
breathe>=4.23.0
docutils>=0.16
sphinx>=3.2.0,<4.0
sphinx_rtd_theme
Expand Down