| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Fix test failures after r334053. | Eric Fiselier | 2018-06-06 | 1 | -1/+3 |
| * | Fix PR37694 - std::vector doesn't correctly move construct allocators. | Eric Fiselier | 2018-06-05 | 2 | -0/+64 |
| * | Mark deduction guide tests as failing on apple-clang-9 | JF Bastien | 2018-05-29 | 1 | -1/+1 |
| * | Fix up the final bits of breakage due to clang v5 generating bad implicit tem... | Marshall Clow | 2018-05-28 | 1 | -3/+3 |
| * | Fix array deduction guide test breakage | JF Bastien | 2018-05-25 | 1 | -0/+3 |
| * | Implement deduction guides for vector | Marshall Clow | 2018-05-21 | 2 | -0/+156 |
| * | Deduction guides for list | Marshall Clow | 2018-05-20 | 2 | -0/+145 |
| * | Implement deduction guides for forward_list | Marshall Clow | 2018-05-19 | 2 | -0/+145 |
| * | Remove expression '1L + INT_MAX', because it overflows on machines where int/... | Marshall Clow | 2018-05-19 | 1 | -2/+2 |
| * | Implement deduction guides for <deque> | Marshall Clow | 2018-05-18 | 2 | -0/+140 |
| * | Disable 'missing-braces' warning | Marshall Clow | 2018-05-18 | 2 | -0/+9 |
| * | Implement deduction guides for <array>; Reviewed as https://reviews.llvm.org/... | Marshall Clow | 2018-05-18 | 2 | -0/+90 |
| * | [libcxx] [test] Strip trailing whitespace, NFC. | Stephan T. Lavavej | 2018-02-12 | 1 | -4/+4 |
| * | Fix size and alignment of array<T, 0>. | Eric Fiselier | 2018-02-07 | 1 | -2/+18 |
| * | Fix -verify static assert messages for older Clang versions | Eric Fiselier | 2018-02-07 | 2 | -2/+2 |
| * | [libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default ... | Eric Fiselier | 2018-02-07 | 14 | -4/+500 |
| * | Revert "[libc++] Fix PR35491 - std::array of zero-size doesn't work with non-... | Nirav Dave | 2018-02-06 | 7 | -206/+0 |
| * | correct comment about C++03 assignment operators | Eric Fiselier | 2018-02-04 | 1 | -4/+4 |
| * | Make array<const T, 0> non-CopyAssignable and make swap and fill ill-formed. | Eric Fiselier | 2018-02-04 | 4 | -0/+160 |
| * | [libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default ... | Eric Fiselier | 2018-02-04 | 4 | -0/+46 |
| * | Mark LWG2824 as complete. We already did it, but I added a test to be sure | Marshall Clow | 2018-01-03 | 1 | -0/+41 |
| * | Fix copy/paste bug in test where we were putting a '3' into a vector<bool>. NFC. | Marshall Clow | 2017-11-26 | 1 | -2/+2 |
| * | Replace assert(true) in tests with actual asserts. Reviewed as https://review... | Billy Robert O'Neal III | 2017-11-21 | 1 | -2/+2 |
| * | Change (void) casts to TEST_IGNORE_NODISCARD, as requested by Eric. Reviewed ... | Billy Robert O'Neal III | 2017-11-21 | 1 | -2/+2 |
| * | First part of P0600 - '[[nodiscard] in the standard library'. Mark the 'empty... | Marshall Clow | 2017-11-15 | 6 | -0/+168 |
| * | More missing tests - array<>::size() and array<>::max_size() | Marshall Clow | 2017-11-15 | 2 | -0/+72 |
| * | Added tests for xxx.size() and xxx.empty() for all the sequence containers | Marshall Clow | 2017-11-15 | 9 | -0/+478 |
| * | [libc++] Fix PR34898 - vector iterator constructors and assign method perform... | Eric Fiselier | 2017-10-17 | 7 | -66/+666 |
| * | [test] Allow other implementations to strengthen noexcept on deque's move con... | Casey Carter | 2017-09-30 | 1 | -1/+1 |
| * | [test] forwardlist.cons/move_noexcept.pass.cpp | Casey Carter | 2017-09-28 | 1 | -1/+1 |
| * | [libcxx] [test] Change comments to say C++ instead of c++. NFC. | Stephan T. Lavavej | 2017-07-29 | 5 | -5/+5 |
| * | [libcxx] [test] Untabify, NFC. | Stephan T. Lavavej | 2017-07-29 | 11 | -46/+46 |
| * | [array.tuple]/1 says that instantiating tuple_element<N, array<T, M>> is ill-... | Marshall Clow | 2017-06-12 | 1 | -0/+35 |
| * | [libcxx] [test] Fix MSVC "warning C6326: Potential comparison of a constant w... | Stephan T. Lavavej | 2017-05-05 | 1 | -2/+2 |
| * | [libcxx] [test] Strip trailing whitespace. NFC. | Stephan T. Lavavej | 2017-05-04 | 1 | -1/+1 |
| * | Sigh. Once again forgot about the 'no exceptions' bots. | Marshall Clow | 2017-04-17 | 2 | -0/+8 |
| * | Mark LWG#2853 as complete. No code changes required, but added a couple of ex... | Marshall Clow | 2017-04-17 | 2 | -0/+48 |
| * | Cleanup one more <forward_list> test | Eric Fiselier | 2017-04-16 | 2 | -35/+5 |
| * | Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in <forward_list> | Eric Fiselier | 2017-04-16 | 11 | -45/+21 |
| * | Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in <list> | Eric Fiselier | 2017-04-16 | 9 | -36/+18 |
| * | Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in deque | Eric Fiselier | 2017-04-16 | 10 | -42/+20 |
| * | Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in <array> | Eric Fiselier | 2017-04-16 | 1 | -1/+3 |
| * | Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in vector. | Eric Fiselier | 2017-04-16 | 19 | -81/+43 |
| * | [libcxx] Improve code generation for vector::clear(). | Bruce Mitchener | 2017-03-23 | 1 | -0/+40 |
| * | Implement P0599: 'noexcept for hash functions'. Fix a couple of hash function... | Marshall Clow | 2017-03-23 | 1 | -1/+3 |
| * | Fix sign-compare warning in test; Oddly this only appears on OS X | Eric Fiselier | 2017-03-03 | 1 | -7/+5 |
| * | Update all bug URL's to point to https://bugs.llvm.org/... | Eric Fiselier | 2017-02-17 | 1 | -1/+1 |
| * | Stop using random_shuffle in the libc++ test suite. It's going to be removed ... | Marshall Clow | 2017-02-07 | 2 | -2/+8 |
| * | [libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3. | Stephan T. Lavavej | 2017-02-05 | 2 | -2/+0 |
| * | [libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3. | Stephan T. Lavavej | 2017-02-05 | 22 | -51/+110 |