mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
watch_list: Fix indentation.
This commit is contained in:
parent
1067a5363f
commit
6d2936e5fc
|
@ -36,10 +36,10 @@ namespace smt {
|
||||||
|
|
||||||
void watch_list::expand() {
|
void watch_list::expand() {
|
||||||
if (m_data == nullptr) {
|
if (m_data == nullptr) {
|
||||||
unsigned size = DEFAULT_WATCH_LIST_SIZE + HEADER_SIZE;
|
unsigned size = DEFAULT_WATCH_LIST_SIZE + HEADER_SIZE;
|
||||||
unsigned * mem = reinterpret_cast<unsigned*>(alloc_svect(char, size));
|
unsigned * mem = reinterpret_cast<unsigned*>(alloc_svect(char, size));
|
||||||
#ifdef _AMD64_
|
#ifdef _AMD64_
|
||||||
++mem; // make sure data is aligned in 64 bit machines
|
++mem; // make sure data is aligned in 64 bit machines
|
||||||
#endif
|
#endif
|
||||||
*mem = 0;
|
*mem = 0;
|
||||||
++mem;
|
++mem;
|
||||||
|
@ -62,9 +62,9 @@ namespace smt {
|
||||||
unsigned * mem = reinterpret_cast<unsigned*>(alloc_svect(char, new_capacity + HEADER_SIZE));
|
unsigned * mem = reinterpret_cast<unsigned*>(alloc_svect(char, new_capacity + HEADER_SIZE));
|
||||||
unsigned curr_end_cls = end_cls_core();
|
unsigned curr_end_cls = end_cls_core();
|
||||||
#ifdef _AMD64_
|
#ifdef _AMD64_
|
||||||
++mem; // make sure data is aligned in 64 bit machines
|
++mem; // make sure data is aligned in 64 bit machines
|
||||||
#endif
|
#endif
|
||||||
*mem = curr_end_cls;
|
*mem = curr_end_cls;
|
||||||
++mem;
|
++mem;
|
||||||
SASSERT(bin_bytes <= new_capacity);
|
SASSERT(bin_bytes <= new_capacity);
|
||||||
unsigned new_begin_bin = new_capacity - bin_bytes;
|
unsigned new_begin_bin = new_capacity - bin_bytes;
|
||||||
|
|
Loading…
Reference in a new issue