id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 7752,algorithm minmax_element triggers warning with Clang,Paul A. Bristow,Marshall Clow,"algorithm minmax_element triggers warning with Clang 3.1 {{{ if (comp(first, min_result)) min_result = first, potential_min_result = last; }}} is flagged as having Cish comma abuse ;-) Unless I'm missing something subtle, this can easily be avoided with the more C++ish? {{{ if (comp(first, min_result)) { min_result = first; potential_min_result = last; } }}} path attached. (This does not show when compiling tests, but does show in user code. There are many duplicated warnings from Boost.Test that make it difficult to find other possibly helpful warnings. And hex_test1 aborted...). ",Support Requests,closed,To Be Determined,algorithm,Boost Development Trunk,Optimization,fixed,minmax_element warning clang,