Optional: fix some unused parameter warnings

[SVN r81031]
This commit is contained in:
Vicente J. Botet Escriba
2012-10-21 06:30:04 +00:00
parent f921762bf6
commit f6db3d6bc3

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>