3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 01:55:32 +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:
Alexander Traud 2021-10-27 23:46:31 +02:00 committed by GitHub
parent 723b755ca7
commit f5f35f87d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 108 additions and 108 deletions

View file

@ -22,11 +22,11 @@ Copyright (c) 2015 Microsoft Corporation
/**
\defgroup capi_ex C API examples
*/
/*@{*/
/**@{*/
/**
@name Auxiliary Functions
*/
/*@{*/
/**@{*/
/**
\brief exit gracefully in case of error.
@ -694,12 +694,12 @@ void display_version()
Z3_get_version(&major, &minor, &build, &revision);
printf("Z3 %d.%d.%d.%d\n", major, minor, build, revision);
}
/*@}*/
/**@}*/
/**
@name Examples
*/
/*@{*/
/**@{*/
/**
\brief "Hello world" example: create a Z3 logical context, and delete it.
*/
@ -2947,8 +2947,8 @@ void mk_model_example() {
Z3_del_context(ctx);
}
/*@}*/
/*@}*/
/**@}*/
/**@}*/