mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
fix grouping for latest doxygen (#5626)
Since doxygen 1.8.16, opening and closing a group must not be done as C comment but as doxygen command. In other words, not one but two asterisk characters are required so that doxygen finds a group.
This commit is contained in:
parent
723b755ca7
commit
f5f35f87d0
12 changed files with 108 additions and 108 deletions
|
@ -23,10 +23,10 @@ extern "C" {
|
|||
#endif // __cplusplus
|
||||
|
||||
/** \defgroup capi C API */
|
||||
/*@{*/
|
||||
/**@{*/
|
||||
|
||||
/** @name AST vectors */
|
||||
/*@{*/
|
||||
/**@{*/
|
||||
/**
|
||||
\brief Return an empty AST vector.
|
||||
|
||||
|
@ -104,10 +104,10 @@ extern "C" {
|
|||
*/
|
||||
Z3_string Z3_API Z3_ast_vector_to_string(Z3_context c, Z3_ast_vector v);
|
||||
|
||||
/*@}*/
|
||||
/**@}*/
|
||||
|
||||
/** @name AST maps */
|
||||
/*@{*/
|
||||
/**@{*/
|
||||
/**
|
||||
\brief Return an empty mapping from AST to AST
|
||||
|
||||
|
@ -189,8 +189,8 @@ extern "C" {
|
|||
def_API('Z3_ast_map_to_string', STRING, (_in(CONTEXT), _in(AST_MAP)))
|
||||
*/
|
||||
Z3_string Z3_API Z3_ast_map_to_string(Z3_context c, Z3_ast_map m);
|
||||
/*@}*/
|
||||
/*@}*/
|
||||
/**@}*/
|
||||
/**@}*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue