Skip to content

Commit a10bd96

Browse files
committed
Fix the test of libc++
1 parent faf82b1 commit a10bd96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libcxx/test/libcxx/containers/sequences/deque/spare_block_handling.pass.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ static void print(const Deque& d) {
3838
" : __back_spare() == %zu"
3939
" : __capacity() == %zu"
4040
" : bytes allocated == %zu\n",
41-
d.size(),
42-
d.__front_spare(),
43-
d.__back_spare(),
44-
d.__capacity(),
41+
std::size_t(d.size()),
42+
std::size_t(d.__front_spare()),
43+
std::size_t(d.__back_spare()),
44+
std::size_t(d.__capacity()),
4545
malloc_allocator_base::outstanding_bytes);
4646
}
4747

0 commit comments

Comments
 (0)