mirror of
https://github.com/boostorg/optional.git
synced 2025-07-29 20:17:21 +02:00
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