3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-13 02:34:43 +00:00

Remove int64, uint64 typedefs in favor of int64_t / uint64_t.

This commit is contained in:
Bruce Mitchener 2018-03-31 14:45:04 +07:00
parent 16a2ad9afd
commit 2fa304d8de
80 changed files with 437 additions and 449 deletions

View file

@ -26,7 +26,7 @@ reslimit::reslimit():
m_limit(0) {
}
uint64 reslimit::count() const {
uint64_t reslimit::count() const {
return m_count;
}
@ -41,7 +41,7 @@ bool reslimit::inc(unsigned offset) {
}
void reslimit::push(unsigned delta_limit) {
uint64 new_limit = delta_limit + m_count;
uint64_t new_limit = delta_limit + m_count;
if (new_limit <= m_count) {
new_limit = 0;
}