mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 08:58:44 +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 Floating-Point Arithmetic */
|
||||
/*@{*/
|
||||
/**@{*/
|
||||
/**
|
||||
\brief Create the RoundingMode sort.
|
||||
|
||||
|
@ -841,7 +841,7 @@ extern "C" {
|
|||
|
||||
|
||||
/** @name Z3-specific floating-point extensions */
|
||||
/*@{*/
|
||||
/**@{*/
|
||||
/**
|
||||
\brief Retrieves the number of bits reserved for the exponent in a FloatingPoint sort.
|
||||
|
||||
|
@ -1080,9 +1080,9 @@ extern "C" {
|
|||
def_API('Z3_mk_fpa_to_fp_int_real', AST, (_in(CONTEXT),_in(AST),_in(AST),_in(AST),_in(SORT)))
|
||||
*/
|
||||
Z3_ast Z3_API Z3_mk_fpa_to_fp_int_real(Z3_context c, Z3_ast rm, Z3_ast exp, Z3_ast sig, Z3_sort s);
|
||||
/*@}*/
|
||||
/*@}*/
|
||||
/*@}*/
|
||||
/**@}*/
|
||||
/**@}*/
|
||||
/**@}*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue