forked from boostorg/optional
Merge pull request #127 from Flamefire/patch-1
Fix ununsed parameter warning
This commit is contained in:
@@ -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>
|
||||||
|
Reference in New Issue
Block a user