Compare commits

...

2 Commits

Author SHA1 Message Date
14374bbcc4 Release 1.52.0
[SVN r81201]
2012-11-05 15:31:58 +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>