summaryrefslogtreecommitdiff
path: root/boost/algorithm/minmax_element.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/algorithm/minmax_element.hpp')
-rw-r--r--boost/algorithm/minmax_element.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/boost/algorithm/minmax_element.hpp b/boost/algorithm/minmax_element.hpp
index 0d2efd8cd8..752f6cbdb1 100644
--- a/boost/algorithm/minmax_element.hpp
+++ b/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;
}