Skip to content

Commit 657034a

Browse files
committed
format
1 parent 92dc268 commit 657034a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/beman/inplace_vector/ref_impl.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ int main() {
364364
CHECK(a.size() == std::size_t(10));
365365
CHECK(!a.empty());
366366
CHECK_THROWS(a.push_back(0), std::bad_alloc);
367-
CHECK((uintptr_t)nullptr == (uintptr_t)a.try_push_back(0));
367+
CHECK((uintptr_t) nullptr == (uintptr_t)a.try_push_back(0));
368368
}
369369

370370
{ // resize copyable
@@ -762,7 +762,7 @@ int main() {
762762
CHECK(c.front().getd() == 3.5);
763763
CHECK(c.back().geti() == 3);
764764
CHECK(c.back().getd() == 4.5);
765-
CHECK((uintptr_t)nullptr == (uintptr_t)c.try_emplace_back(2, 3.5));
765+
CHECK((uintptr_t) nullptr == (uintptr_t)c.try_emplace_back(2, 3.5));
766766
}
767767
{ // unchecked_emplace_back
768768
vector<non_copyable, 2> c;

0 commit comments

Comments
 (0)