Compare commits

...

2 Commits

Author SHA1 Message Date
78dca65ef2 Release 1.55.0
[SVN r86621]
2013-11-11 19:45:21 +00:00
9bd310086a Optional: merge 81031
[SVN r81036]
2012-10-21 12:01:37 +00:00
2 changed files with 2 additions and 2 deletions

0
doc/html/boostbook.css Executable file → Normal file
View File

View 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>