forked from boostorg/optional
Fix ununsed parameter warning
The function returns false w/o using any parameter leading to a warning. Remove the name from the parameter
This commit is contained in:
@ -134,7 +134,7 @@ bool operator == ( optional<T> const& x, none_t ) BOOST_NOEXCEPT
|
||||
|
||||
template<class T>
|
||||
inline
|
||||
bool operator < ( optional<T> const& x, none_t )
|
||||
bool operator < ( optional<T> const&, none_t )
|
||||
{ return false; }
|
||||
|
||||
template<class T>
|
||||
|
Reference in New Issue
Block a user