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

core/lib/xfa: fix parameter documentation #18837

Merged
merged 1 commit into from
Nov 3, 2022
Merged
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
8 changes: 4 additions & 4 deletions core/lib/include/xfa.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* error: ISO C forbids empty initializer braces
* error: ISO C forbids zero-size array ‘xfatest_const_end’
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_INIT_CONST(type, name) \
Expand All @@ -86,7 +86,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* error: ISO C forbids empty initializer braces
* error: ISO C forbids zero-size array ‘xfatest_end’
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_INIT(type, name) \
Expand All @@ -105,7 +105,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* It is supposed to be used in compilation units where the cross file array is
* being accessed, but not defined using XFA_INIT.
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_USE_CONST(type, name) \
Expand All @@ -120,7 +120,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* It is supposed to be used in compilation units where the cross file array is
* being accessed, but not defined using XFA_INIT.
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_USE(type, name) \
Expand Down