mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 21:03:39 +00:00
fix break in configure
This commit is contained in:
parent
ea55bd495f
commit
16a69e750a
2 changed files with 3 additions and 3 deletions
|
@ -130,7 +130,7 @@ extern "C" {
|
||||||
Z3_CATCH_RETURN(0.0);
|
Z3_CATCH_RETURN(0.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long long Z3_API Z3_get_estimated_alloc_size(void) {
|
__uint64 Z3_API Z3_get_estimated_alloc_size(void) {
|
||||||
return memory::get_allocation_size();
|
return memory::get_allocation_size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5970,9 +5970,9 @@ extern "C" {
|
||||||
/**
|
/**
|
||||||
\brief Return the estimated allocated memory in bytes.
|
\brief Return the estimated allocated memory in bytes.
|
||||||
|
|
||||||
def_API('Z3_get_estimated_alloc_size', ULLONG, ())
|
def_API('Z3_get_estimated_alloc_size', UINT64, ())
|
||||||
*/
|
*/
|
||||||
unsigned long long Z3_API Z3_get_estimated_alloc_size(void);
|
__uint64 Z3_API Z3_get_estimated_alloc_size(void);
|
||||||
|
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue