| Commit message (Expand) | Author | Age | Files | Lines |
* | Add is_swappable/is_nothrow_swappable traits | Eric Fiselier | 2016-04-21 | 1 | -1/+1 |
* | Remove unused internal routines. No functional change | Marshall Clow | 2016-04-04 | 1 | -28/+0 |
* | Implement P0253R1: Fixing a design mistake in the searchers interface. | Marshall Clow | 2016-03-08 | 1 | -21/+23 |
* | Implement P0025R0: 'An algorithm to clamp a value between a pair of boundary ... | Marshall Clow | 2016-03-07 | 1 | -0/+27 |
* | Fix PR#25973 : 'basic_string::assign(InputIt, InputIt) doesn't provide the st... | Marshall Clow | 2016-01-13 | 1 | -19/+0 |
* | Make reverse() call iter_swap like the standard says, instead of calling swap... | Marshall Clow | 2015-11-02 | 1 | -2/+2 |
* | Fix warnings about pessimizing return moves for C++11 and higher | Dimitry Andric | 2015-08-19 | 1 | -1/+1 |
* | Fix PR#24267. use numeric_limits::max instead of ~0 for 'all ones', since tha... | Marshall Clow | 2015-07-30 | 1 | -1/+1 |
* | Fix a self-move bug in inplace_merge. Thanks to Ted and Dexon for the report ... | Marshall Clow | 2015-07-29 | 1 | -8/+32 |
* | Fix some places where we could call memmove(null,xxx,0) - which is UB | Marshall Clow | 2015-06-02 | 1 | -6/+14 |
* | Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_element | Marshall Clow | 2015-05-10 | 1 | -33/+18 |
* | Fix PR 22541: When values are equal, minmax should return the rightmost one i... | Marshall Clow | 2015-02-11 | 1 | -6/+6 |
* | [libcxx] Properly convert the count arguments to the *_n algorithms before use. | Eric Fiselier | 2015-02-10 | 1 | -6/+14 |
* | Get tests running with warnings. Fix warnings in headers and tests | Eric Fiselier | 2015-02-05 | 1 | -4/+0 |
* | Fix PR#22433. The algorithm is_partitioned was testing an item in the middle ... | Marshall Clow | 2015-02-02 | 1 | -0/+3 |
* | Fix PR#22427. The implementation of inplace_merge had a \'small data set\' op... | Marshall Clow | 2015-02-02 | 1 | -13/+3 |
* | Reorder a couple of operations in inplace_merge so that we can meet the compl... | Marshall Clow | 2015-02-02 | 1 | -5/+3 |
* | Fix use of operator comma in is_permutation and delete comma operator for tes... | Eric Fiselier | 2014-10-27 | 1 | -1/+1 |
* | [libcxx] Fix use of operator comma where the types can be user defined | Eric Fiselier | 2014-10-27 | 1 | -16/+16 |
* | Fix for mismatch to handle evil iterators which overload operator comma | Marshall Clow | 2014-09-16 | 1 | -2/+2 |
* | NFC. Move definition of _LIBCPP_ASSERT into __debug header and remove externa... | Eric Fiselier | 2014-08-10 | 1 | -0/+2 |
* | Fix std::make_heap's worst case time complexity | David Majnemer | 2014-07-22 | 1 | -54/+68 |
* | Make the helper routines in string really be constexpr. This required a bit o... | Marshall Clow | 2014-06-10 | 1 | -5/+15 |
* | Per N3924, mark random_shuffle as deprecated in the synopsis for <algorithm>.... | Marshall Clow | 2014-03-03 | 1 | -2/+3 |
* | Implement LWG2350: min, max, and minmax should be constexpr. | Marshall Clow | 2014-02-19 | 1 | -55/+114 |
* | G M: Restore the ability for libcxx to compile again on mingw 64. | Howard Hinnant | 2013-09-17 | 1 | -0/+3 |
* | Rename _LIBCPP_DEBUG2 to _LIBCPP_DEBUG. | Howard Hinnant | 2013-08-23 | 1 | -71/+71 |
* | Debug mode for string. This commit also marks the first time libc++ debug-mo... | Howard Hinnant | 2013-08-23 | 1 | -0/+4 |
* | Zhihao Yuan noted that there were a few unneeded statements. Eliminated the... | Howard Hinnant | 2013-08-22 | 1 | -1/+1 |
* | Xing Xue: port to IBM XLC++/AIX. | Howard Hinnant | 2013-08-14 | 1 | -0/+4 |
* | Nico Rieck: this patch series fixes visibility issues on Windows as explaine... | Howard Hinnant | 2013-08-12 | 1 | -38/+38 |
* | Nico Rieck: Currently _MSC_VER and _WIN32 are used to guard code which is | Howard Hinnant | 2013-08-01 | 1 | -4/+4 |
* | Taking another swing at correctly optimizing fill_n. | Howard Hinnant | 2013-08-01 | 1 | -9/+11 |
* | Constrain fill_n -> memset operations to include implicit convertibility to u... | Howard Hinnant | 2013-08-01 | 1 | -0/+1 |
* | Fix a bug in std::fill_n where memset would end up being called in cases when... | Anders Carlsson | 2013-07-22 | 1 | -2/+2 |
* | Fix incorrect type usage; nice catch by Sebastian | Marshall Clow | 2013-05-10 | 1 | -1/+1 |
* | Implement n3607: 'equal', 'mismatch', and 'is_permutation' | Marshall Clow | 2013-05-09 | 1 | -0/+207 |
* | Somehow search_n never got tested, so of course it had a bug in it. This fix... | Howard Hinnant | 2013-04-04 | 1 | -1/+1 |
* | Change the 'result_type' from unsigned to 'uint_fast32_t'. This eliminates tr... | Marshall Clow | 2013-02-07 | 1 | -1/+1 |
* | Marcin Zalewski: Change the name of a template parameter in __copy_backward ... | Howard Hinnant | 2013-02-06 | 1 | -2/+2 |
* | Provide a way to disable use of extern templates in libc++. This is intended... | Howard Hinnant | 2012-11-06 | 1 | -33/+33 |
* | Performance tweaking rotate. | Howard Hinnant | 2012-08-03 | 1 | -27/+84 |
* | <algorithm> no longer needs to include <cstdlib>, but can get away with just ... | Howard Hinnant | 2012-07-26 | 1 | -1/+1 |
* | Update <random> with constexpr support. Patch contributed by Jonathan Sauer. | Howard Hinnant | 2012-04-02 | 1 | -4/+9 |
* | This is an initial commit of constexpr support as proposed by Richard Smith. ... | Howard Hinnant | 2012-04-02 | 1 | -2/+2 |
* | The exception recovery mechanism for the uninitialized_* algorithms did not w... | Howard Hinnant | 2011-12-29 | 1 | -0/+2 |
* | Quash a whole bunch of warnings | Howard Hinnant | 2011-12-01 | 1 | -9/+43 |
* | Further macro protection by replacing _[A-Z] with _[A-Z]p | Howard Hinnant | 2011-11-29 | 1 | -41/+41 |
* | Add protection from min/max macros | Howard Hinnant | 2011-11-29 | 1 | -0/+2 |
* | Remove redundant iterator assignment detected by Marshall Clow | Howard Hinnant | 2011-11-28 | 1 | -3/+0 |