We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf82b1 commit a10bd96Copy full SHA for a10bd96
libcxx/test/libcxx/containers/sequences/deque/spare_block_handling.pass.cpp
@@ -38,10 +38,10 @@ static void print(const Deque& d) {
38
" : __back_spare() == %zu"
39
" : __capacity() == %zu"
40
" : bytes allocated == %zu\n",
41
- d.size(),
42
- d.__front_spare(),
43
- d.__back_spare(),
44
- d.__capacity(),
+ std::size_t(d.size()),
+ std::size_t(d.__front_spare()),
+ std::size_t(d.__back_spare()),
+ std::size_t(d.__capacity()),
45
malloc_allocator_base::outstanding_bytes);
46
}
47
0 commit comments