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:
Alexander Grund
2024-08-16 10:37:12 +02:00
committed by GitHub
parent 411ead088d
commit 36c33f2e67

View File

@ -134,7 +134,7 @@ bool operator == ( optional<T> const& x, none_t ) BOOST_NOEXCEPT
template<class T> template<class T>
inline inline
bool operator < ( optional<T> const& x, none_t ) bool operator < ( optional<T> const&, none_t )
{ return false; } { return false; }
template<class T> template<class T>