From b5c87084afaef42b2d058f68091be31988a6a874 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:08:07 +0900 Subject: Imported Upstream version 1.64.0 Change-Id: Id9212edd016dd55f21172c427aa7894d1d24148b Signed-off-by: DongHun Kwak --- boost/hana/less.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'boost/hana/less.hpp') diff --git a/boost/hana/less.hpp b/boost/hana/less.hpp index eff6d3709b..05cceabb1d 100644 --- a/boost/hana/less.hpp +++ b/boost/hana/less.hpp @@ -2,7 +2,7 @@ @file Defines `boost::hana::less`. -@copyright Louis Dionne 2013-2016 +@copyright Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ @@ -103,8 +103,8 @@ BOOST_HANA_NAMESPACE_BEGIN >> { template static constexpr auto apply(X const&, Y const&) { - constexpr auto less = hana::less(hana::value(), hana::value()); - constexpr bool truth_value = hana::if_(less, true, false); + constexpr auto is_less = hana::less(hana::value(), hana::value()); + constexpr bool truth_value = hana::if_(is_less, true, false); return hana::bool_c; } }; -- cgit v1.2.3