1. bda804e Remove names of unreferenced parameters. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  2. 849c551 Add braces, move braces, and rename variables to avoid shadowing. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  3. 3e0808e Implement P0025R0: 'An algorithm to clamp a value between a pair of boundary values' for C++17 by Marshall Clow · 9 years ago
  4. 36dc080 Change some #ifdefs to #if - thanks to Dexon for thge catch. by Marshall Clow · 9 years ago
  5. a379576 Fix a self-move bug in inplace_merge. Thanks to Ted and Dexon for the report and the suggested fix. by Marshall Clow · 9 years ago
  6. 3a07a2f Fix warnings in test/std/algorithms by Eric Fiselier · 9 years ago
  7. 928735a Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_element by Marshall Clow · 9 years ago
  8. e7d3925 Need to wrap a bit in an ifdef, since there are no initializer_lists in C++03 by Marshall Clow · 10 years ago
  9. 3024f86 Fix PR 22541: When values are equal, minmax should return the rightmost one in the initializer_list by Marshall Clow · 10 years ago
  10. 4c2684c Fix PR#22427. The implementation of inplace_merge had a \'small data set\' optimization; if either half of the merge was small (i.e, less than 9 items), it did an inplace merge rather than allocating a buffer and doing a faster/smarter merge. However, this failed to satisfy the complexity requirements in the standard. Remove that code. Add tests to check the complexity, and add the same tests for std::merge, since we are in that section of the test suite anyway. by Marshall Clow · 10 years ago
  11. a90c6dd Move test into test/std subdirectory. by Eric Fiselier · 10 years ago