1
0
forked from boostorg/core

Avoid unused parameter warning in to_address_test.cpp

This commit is contained in:
Peter Dimov
2021-11-01 01:58:05 +02:00
parent b5f59858b9
commit 44e294fff1

View File

@ -124,7 +124,7 @@ struct pointer_traits<P6<T> > {
namespace std {
template<class T>
struct pointer_traits<P6<T> > {
static T* to_address(const P6<T>& p) BOOST_NOEXCEPT {
static T* to_address(const P6<T>& /*p*/) BOOST_NOEXCEPT {
return 0;
}
};