|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r81036 - branches/release/boost/optional
From: vicente.botet_at_[hidden]
Date: 2012-10-21 08:01:37
Author: viboes
Date: 2012-10-21 08:01:37 EDT (Sun, 21 Oct 2012)
New Revision: 81036
URL: http://svn.boost.org/trac/boost/changeset/81036
Log:
Optional: merge 81031
Text files modified:
branches/release/boost/optional/optional.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/optional/optional.hpp
==============================================================================
--- branches/release/boost/optional/optional.hpp (original)
+++ branches/release/boost/optional/optional.hpp 2012-10-21 08:01:37 EDT (Sun, 21 Oct 2012)
@@ -890,12 +890,12 @@
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>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk