Skip to content

Commit 8b4bf61

Browse files
committed
apply clang-format to sharing_map.h
1 parent f917b98 commit 8b4bf61

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

src/util/sharing_map.h

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Daniel Poetzl
1313
#define CPROVER_UTIL_SHARING_MAP_H
1414

1515
#ifdef SM_DEBUG
16-
#include <iostream>
16+
# include <iostream>
1717
#endif
1818

1919
#include <functional>
@@ -34,9 +34,9 @@ Author: Daniel Poetzl
3434
#include "threeval.h"
3535

3636
#ifdef SM_INTERNAL_CHECKS
37-
#define SM_ASSERT(b) INVARIANT(b, "Sharing map internal invariant")
37+
# define SM_ASSERT(b) INVARIANT(b, "Sharing map internal invariant")
3838
#else
39-
#define SM_ASSERT(b)
39+
# define SM_ASSERT(b)
4040
#endif
4141

4242
// clang-format off
@@ -344,8 +344,8 @@ class sharing_mapt
344344
map.swap(other.map);
345345

346346
std::size_t tmp = num;
347-
num=other.num;
348-
other.num=tmp;
347+
num = other.num;
348+
other.num = tmp;
349349
}
350350

351351
/// Get number of elements in map
@@ -359,14 +359,14 @@ class sharing_mapt
359359
/// Check if map is empty
360360
bool empty() const
361361
{
362-
return num==0;
362+
return num == 0;
363363
}
364364

365365
/// Clear map
366366
void clear()
367367
{
368368
map.clear();
369-
num=0;
369+
num = 0;
370370
}
371371

372372
/// Check if key is in map
@@ -376,7 +376,7 @@ class sharing_mapt
376376
/// - Best case: O(1)
377377
bool has_key(const key_type &k) const
378378
{
379-
return get_leaf_node(k)!=nullptr;
379+
return get_leaf_node(k) != nullptr;
380380
}
381381

382382
// views
@@ -695,8 +695,7 @@ ::iterate(
695695
f(l.get_key(), l.get_value());
696696
}
697697
}
698-
}
699-
while(!stack.empty());
698+
} while(!stack.empty());
700699
}
701700

702701
SHARING_MAPT(std::size_t)
@@ -1113,8 +1112,7 @@ ::get_delta_view(
11131112
}
11141113
}
11151114
}
1116-
}
1117-
while(!stack.empty());
1115+
} while(!stack.empty());
11181116
}
11191117

11201118
SHARING_MAPT2(, delta_viewt)::get_delta_view(
@@ -1217,7 +1215,7 @@ SHARING_MAPT(void)::erase(const key_type &k)
12171215
if(m.size() > 1 || del == nullptr)
12181216
{
12191217
del = ip;
1220-
del_bit=bit;
1218+
del_bit = bit;
12211219
}
12221220

12231221
ip = &ip->add_child(bit);

0 commit comments

Comments
 (0)