File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/beman/inplace_vector Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments