mirror of
https://github.com/boostorg/optional.git
synced 2025-07-17 06:12:08 +02:00
Compare commits
1 Commits
boost-1.55
...
boost-1.51
Author | SHA1 | Date | |
---|---|---|---|
5944c63048 |
@ -890,12 +890,12 @@ bool operator >= ( optional<T> const& x, none_t y )
|
||||
|
||||
template<class T>
|
||||
inline
|
||||
bool operator == ( none_t , optional<T> const& y )
|
||||
bool operator == ( none_t x, optional<T> const& y )
|
||||
{ return equal_pointees(optional<T>() ,y); }
|
||||
|
||||
template<class T>
|
||||
inline
|
||||
bool operator < ( none_t , optional<T> const& y )
|
||||
bool operator < ( none_t x, optional<T> const& y )
|
||||
{ return less_pointees(optional<T>() ,y); }
|
||||
|
||||
template<class T>
|
||||
|
Reference in New Issue
Block a user