mirror of
https://git.suyu.dev/suyu/ext-boost.git
synced 2026-01-04 21:54:56 +01:00
Update to boost 1.66
This commit is contained in:
parent
9ffbf897dc
commit
d80e506e17
203 changed files with 14820 additions and 2478 deletions
|
|
@ -26,7 +26,7 @@ namespace boost {
|
|||
template<class T>
|
||||
inline
|
||||
bool operator == ( optional<T> const& x, optional<T> const& y )
|
||||
{ return equal_pointees(x,y); }
|
||||
{ return bool(x) && bool(y) ? *x == *y : bool(x) == bool(y); }
|
||||
|
||||
template<class T>
|
||||
inline
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue