mirror of
https://github.com/boostorg/optional.git
synced 2025-07-13 20:36:38 +02:00
Compare commits
2 Commits
boost-1.49
...
boost-1.55
Author | SHA1 | Date | |
---|---|---|---|
78dca65ef2 | |||
9bd310086a |
0
doc/html/boostbook.css
Executable file → Normal file
0
doc/html/boostbook.css
Executable file → Normal file
@ -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