From b7d4f04a8bd73b1969eeba70ddbe874d198c6355 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 12 Dec 2012 15:40:24 +0000 Subject: [PATCH] Removed use of comma operator; Refs #7752 [SVN r81876] --- include/boost/algorithm/minmax_element.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/boost/algorithm/minmax_element.hpp b/include/boost/algorithm/minmax_element.hpp index 0d2efd8..752f6cb 100644 --- a/include/boost/algorithm/minmax_element.hpp +++ b/include/boost/algorithm/minmax_element.hpp @@ -99,8 +99,10 @@ namespace boost { // if odd number of elements, treat last element if (first != last) { // odd number of elements - if (comp(first, min_result)) - min_result = first, potential_min_result = last; + if (comp(first, min_result)) { + min_result = first; + potential_min_result = last; + } else if (comp(max_result, first)) max_result = first; }