mirror of
https://github.com/boostorg/optional.git
synced 2026-02-03 22:05:15 +01:00
Optional: fix some unused parameter warnings
[SVN r81031]
This commit is contained in:
@@ -890,12 +890,12 @@ bool operator >= ( optional<T> const& x, none_t y )
|
||||
|
||||
template<class T>
|
||||
inline
|
||||
bool operator == ( none_t x, optional<T> const& y )
|
||||
bool operator == ( none_t , optional<T> const& y )
|
||||
{ return equal_pointees(optional<T>() ,y); }
|
||||
|
||||
template<class T>
|
||||
inline
|
||||
bool operator < ( none_t x, optional<T> const& y )
|
||||
bool operator < ( none_t , optional<T> const& y )
|
||||
{ return less_pointees(optional<T>() ,y); }
|
||||
|
||||
template<class T>
|
||||
|
||||
Reference in New Issue
Block a user