| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Cleanup _LIBCPP_HAS_NO_<c++11-feature> in the string library. | Eric Fiselier | 2017-04-19 | 9 | -243/+236 |
* | Fix PR32642 - string::insert and string::append don't work with move_iterator. | Eric Fiselier | 2017-04-15 | 2 | -4/+45 |
* | Implement LWG#2761: 'basic_string should require that charT match traits::cha... | Marshall Clow | 2017-03-15 | 1 | -0/+18 |
* | Work around test failure on 32 bit OS X | Eric Fiselier | 2017-03-02 | 1 | -6/+13 |
* | Remove XFAIL in implicit_deduction_guides tests | Steven Wu | 2017-02-27 | 1 | -4/+0 |
* | Work around Clang assertion when testing C++17 deduction guides with '-g'. | Eric Fiselier | 2017-02-17 | 1 | -0/+4 |
* | [libc++] Fix PR 31938 - std::basic_string constructors use non-deductible par... | Eric Fiselier | 2017-02-17 | 1 | -0/+300 |
* | [libcxx] [test] Strip trailing whitespace. | Stephan T. Lavavej | 2017-02-05 | 1 | -3/+3 |
* | [libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3. | Stephan T. Lavavej | 2017-02-05 | 5 | -13/+0 |
* | [libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3. | Stephan T. Lavavej | 2017-02-05 | 2 | -2/+6 |
* | Fix up some no-exception compile failures | Marshall Clow | 2017-01-31 | 1 | -11/+11 |
* | Workaround new -Wshadow warning introduced by r293599 | Alex Lorenz | 2017-01-31 | 1 | -1/+1 |
* | Fix PR#31779: basic_string::operator= isn't exception safe. | Marshall Clow | 2017-01-31 | 1 | -0/+81 |
* | Fix std::string assignment ambiguity from braced initializer lists. | Eric Fiselier | 2017-01-17 | 2 | -0/+58 |
* | [libcxx] [test] Fix MSVC x64 truncation warnings with 32-bit allocator size_t... | Stephan T. Lavavej | 2016-12-14 | 1 | -1/+1 |
* | [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible ... | Stephan T. Lavavej | 2016-12-08 | 1 | -4/+4 |
* | [libcxx] [test] D27269: Fix MSVC x64 warning C4267 "conversion from 'size_t' ... | Stephan T. Lavavej | 2016-12-06 | 2 | -5/+6 |
* | [libcxx] [test] D27025: Fix MSVC warning C4389 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-12-06 | 1 | -2/+2 |
* | [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-12-06 | 3 | -6/+9 |
* | [libcxx] [test] D27021: Fix MSVC warning C4389 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-12-06 | 1 | -2/+3 |
* | Protect std::string tests under libcpp-no-exceptions | Roger Ferrer Ibanez | 2016-11-29 | 2 | -5/+19 |
* | Reverting wrong diff | Roger Ferrer Ibanez | 2016-11-24 | 2 | -14/+2 |
* | Protect std::string tests under libcpp-no-exceptions | Roger Ferrer Ibanez | 2016-11-24 | 2 | -2/+14 |
* | [libcxx] [test] D27027: Strip trailing whitespace. | Stephan T. Lavavej | 2016-11-23 | 16 | -28/+28 |
* | [libcxx] [test] D27018: Fix MSVC warning C4018 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-11-23 | 1 | -2/+2 |
* | Missed one of the try blocks the first time :-(. Thanks to Renato for the hea... | Marshall Clow | 2016-11-15 | 1 | -3/+13 |
* | Missed a test with exceptions disabled earlier. Oops. | Marshall Clow | 2016-11-14 | 1 | -4/+14 |
* | Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last... | Marshall Clow | 2016-11-14 | 1 | -0/+166 |
* | [libcxx] [test] D26314: Fix MSVC warning C4189 "local variable is initialized... | Stephan T. Lavavej | 2016-11-14 | 2 | -0/+2 |
* | Protect exceptional paths under libcpp-no-exceptions | Roger Ferrer Ibanez | 2016-11-01 | 28 | -248/+598 |
* | Change from "XFAIL: libcpp-no-exceptions" to "UNSUPPORTED: libcpp-no-exceptio... | Roger Ferrer Ibanez | 2016-10-31 | 2 | -2/+2 |
* | Fix _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY to always have default visibility. | Eric Fiselier | 2016-10-31 | 1 | -0/+5 |
* | Fix shadow warnings in string_view tests. Patch from STL@microsoft.com | Eric Fiselier | 2016-10-24 | 2 | -22/+20 |
* | Add another append test for basic_string | Marshall Clow | 2016-10-05 | 1 | -0/+4 |
* | Fix a few static_asserts that need extra parens on -03 | Marshall Clow | 2016-09-24 | 3 | -6/+6 |
* | Implement proposed resolution for LWG#2758. Reviewed as D24446. Normally, I w... | Marshall Clow | 2016-09-24 | 5 | -6/+13928 |
* | Fix PR#30303 - no matching function for call to '__ptr_in_range' | Marshall Clow | 2016-09-07 | 4 | -0/+40 |
* | Fix Bug 30240 - std::string: append(first, last) error when aliasing. Add te... | Marshall Clow | 2016-09-05 | 12 | -0/+193 |
* | Support allocators with explicit conversion constructors. Fixes bug #29000 | Marshall Clow | 2016-08-17 | 1 | -0/+1 |
* | Make dtor_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.com | Eric Fiselier | 2016-07-25 | 1 | -1/+2 |
* | Make swap_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.com. | Eric Fiselier | 2016-07-25 | 1 | -9/+6 |
* | Implement std::string_view as described in http://wg21.link/P0254R1. Reviewed... | Marshall Clow | 2016-07-21 | 19 | -5/+1392 |
* | Replace __cplusplus comparisons and dialect __has_feature checks with TEST_ST... | Eric Fiselier | 2016-06-14 | 95 | -95/+95 |
* | Remove trailing whitespace in test suite. Approved by Marshall Clow. | Eric Fiselier | 2016-06-01 | 4 | -7/+7 |
* | [libcxx] Improve tests to use the UNSUPPORTED lit directive | Asiri Rathnayake | 2016-05-28 | 1 | -2/+2 |
* | Guard libc++ specific c.__invariants() tests in LIBCPP_ASSERT macros | Eric Fiselier | 2016-04-28 | 77 | -524/+195 |
* | Recommit r263036 with additional inlining, so that it will continue to work w... | Marshall Clow | 2016-04-07 | 1 | -2/+25 |
* | Revert r263036, it's ABI-breaking. | Nico Weber | 2016-03-11 | 1 | -25/+2 |
* | Implement LWG#2579: Inconsistency wrt Allocators in basic_string assignment v... | Marshall Clow | 2016-03-09 | 1 | -1/+33 |
* | Implement LWG#2583: There is no way to supply an allocator for basic_string(s... | Marshall Clow | 2016-03-09 | 1 | -2/+25 |