libstdc++: Fix -Wunused-parameter warning in test
* testsuite/20_util/unsynchronized_pool_resource/allocate.cc: Remove name of unused parameter.
This commit is contained in:
parent
e4658c7dbb
commit
c8d88bf26e
@ -1,3 +1,8 @@
|
|||||||
|
2020-04-16 Jonathan Wakely <jwakely@redhat.com>
|
||||||
|
|
||||||
|
* testsuite/20_util/unsynchronized_pool_resource/allocate.cc: Remove
|
||||||
|
name of unused parameter.
|
||||||
|
|
||||||
2020-04-15 Jonathan Wakely <jwakely@redhat.com>
|
2020-04-15 Jonathan Wakely <jwakely@redhat.com>
|
||||||
|
|
||||||
* include/bits/fs_dir.h (file_status): Define operator== for C++20.
|
* include/bits/fs_dir.h (file_status): Define operator== for C++20.
|
||||||
|
@ -197,7 +197,7 @@ test06()
|
|||||||
void do_deallocate(void* p, std::size_t bytes, std::size_t align)
|
void do_deallocate(void* p, std::size_t bytes, std::size_t align)
|
||||||
{ std::pmr::new_delete_resource()->deallocate(p, bytes, align); }
|
{ std::pmr::new_delete_resource()->deallocate(p, bytes, align); }
|
||||||
|
|
||||||
bool do_is_equal(const memory_resource& r) const noexcept
|
bool do_is_equal(const memory_resource&) const noexcept
|
||||||
{ return false; }
|
{ return false; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user