| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix C++03 build | Eric Fiselier | 2016-12-02 | 1 | -1/+1 |
| * | Make variant's index part of the hash value | Eric Fiselier | 2016-12-02 | 1 | -0/+11 |
| * | Remove _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS | Eric Fiselier | 2016-11-18 | 1 | -182/+2 |
| * | Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last... | Marshall Clow | 2016-11-14 | 1 | -1/+2 |
| * | Fix incorrect exception handling behavior in the uninitialized algorithms | Eric Fiselier | 2016-10-11 | 1 | -39/+100 |
| * | [libc++] Remove various C++03 feature test macros | Eric Fiselier | 2016-09-25 | 1 | -23/+23 |
| * | [libcxx] Fix a data race in call_once | Kuba Brecka | 2016-09-04 | 1 | -0/+12 |
| * | Followon to r279744. Find the other exception types and make __throw_XXX rout... | Marshall Clow | 2016-08-25 | 1 | -4/+4 |
| * | Add an _LIBCPP_NORETURN inline function named __throw_XXX for each exception ... | Marshall Clow | 2016-08-25 | 1 | -8/+11 |
| * | Implement P0040r3: Extending memory management tools | Eric Fiselier | 2016-07-24 | 1 | -0/+108 |
| * | Always use the allocator to construct/destruct elements of a deque/vector. Fi... | Marshall Clow | 2016-07-11 | 1 | -0/+20 |
| * | Implement P0163r0. Add shared_ptr::weak_type. | Eric Fiselier | 2016-06-27 | 1 | -0/+4 |
| * | Fix PR27115 - enable_shared_from_this does not work as a virtual base class. | Eric Fiselier | 2016-06-26 | 1 | -24/+23 |
| * | Enable building and using atomic shared_ptr for GCC. | Eric Fiselier | 2016-06-18 | 1 | -4/+3 |
| * | Fix leak in __enable_weak_this(). Thanks to Arthur O'Dwyer for finding it. | Eric Fiselier | 2016-06-02 | 1 | -2/+4 |
| * | Implement P0033R1 - Re-enabling shared_from_this | Eric Fiselier | 2016-06-02 | 1 | -1/+11 |
| * | Change the control flow in atomic_compare_exchange_strong to avoid a potentia... | Marshall Clow | 2016-05-18 | 1 | -0/+3 |
| * | Change allocator<T>::allocate to throw length_error, not bad_alloc | Eric Fiselier | 2016-05-07 | 1 | -11/+6 |
| * | Add is_swappable/is_nothrow_swappable traits | Eric Fiselier | 2016-04-21 | 1 | -1/+4 |
| * | Fix most GCC attribute ignored warnings | Eric Fiselier | 2016-04-21 | 1 | -6/+4 |
| * | Fix for PR26812: possible overflow issue in std::allocator::allocate | Marshall Clow | 2016-03-03 | 1 | -2/+18 |
| * | Another chunk of N4089 | Marshall Clow | 2016-02-25 | 1 | -19/+2 |
| * | Preemptively disable unsigned integer sanitization in 32 and 64 bit versions ... | Marshall Clow | 2016-01-11 | 1 | -2/+2 |
| * | Add 3 more missing inline/visibility attributes. | Evgeniy Stepanov | 2015-12-09 | 1 | -0/+2 |
| * | Implement P0074: Making owner_less more flexible | Marshall Clow | 2015-11-12 | 1 | -0/+28 |
| * | Cleanup: move visibility/linkage attributes to the first declaration. | Evgeniy Stepanov | 2015-11-07 | 1 | -36/+62 |
| * | Add a test for LWG#2466: allocator_traits::max_size() default behavior is inc... | Marshall Clow | 2015-10-25 | 1 | -1/+1 |
| * | Fix LWG#2127: Move-construction with raw_storage_iterator. | Marshall Clow | 2015-10-25 | 1 | -0/+4 |
| * | [libcxx] Constrain unique_ptr::operator=(unique_ptr<Tp, Dp>) in C++03 mode | Eric Fiselier | 2015-08-28 | 1 | -2/+9 |
| * | Recommit rL245802: Cleanup fancy pointer rebinding in list using __rebind_poi... | Eric Fiselier | 2015-08-23 | 1 | -0/+9 |
| * | Revert r245802. It violates the incomplete type requirements. | Eric Fiselier | 2015-08-23 | 1 | -9/+0 |
| * | Cleanup fancy pointer rebinding in list using __rebind_pointer. | Eric Fiselier | 2015-08-23 | 1 | -0/+9 |
| * | [libcxx] Allow use of <atomic> in C++03. Try 3. | Eric Fiselier | 2015-08-19 | 1 | -3/+5 |
| * | Broke C++03 compatibility in 245330. Fix that. | Marshall Clow | 2015-08-18 | 1 | -1/+1 |
| * | implement more of N4258 - Cleaning up noexcept in the standard library. Speci... | Marshall Clow | 2015-08-18 | 1 | -0/+9 |
| * | Enable and fix warnings during the build. | Eric Fiselier | 2015-07-18 | 1 | -3/+3 |
| * | Make sure that __libcpp_compressed_pair_imp default-constructs its' members, ... | Marshall Clow | 2015-07-16 | 1 | -7/+7 |
| * | Implement the first part of N4258: 'Cleaning up noexcept in the Library'. Thi... | Marshall Clow | 2015-07-13 | 1 | -0/+32 |
| * | [libcxx] Add atomic_support.h header to src that handles needed atomic operat... | Eric Fiselier | 2015-07-07 | 1 | -1/+15 |
| * | Noticed that std::allocator<const T> was missing the definition for is_always... | Marshall Clow | 2015-07-01 | 1 | -0/+1 |
| * | Fix illegal chars that snuck into <memory> | Marshall Clow | 2015-06-19 | 1 | -1/+1 |
| * | Fix ASAN bot; missing bookkeeping in r240136. | Marshall Clow | 2015-06-19 | 1 | -0/+1 |
| * | Fix PR#18843. Thanks to Howard for the fix | Marshall Clow | 2015-06-19 | 1 | -1/+4 |
| * | [libcxx] Fix detection of __is_final. | Eric Fiselier | 2015-06-13 | 1 | -7/+2 |
| * | Implement the first part of N4258 - allocator_traits<X>::is_always_equal. Als... | Marshall Clow | 2015-06-02 | 1 | -0/+28 |
| * | In the case where we are copying/moving zero elements, do less work | Marshall Clow | 2015-06-02 | 1 | -2/+6 |
| * | Remove debugging code | Marshall Clow | 2015-05-31 | 1 | -2/+0 |
| * | Don't try to memcpy zero bytes; sometimes the source pointer is NULL, and tha... | Marshall Clow | 2015-05-31 | 1 | -3/+8 |
| * | Fix PR#23647 - make_shared<volatile bool> - second try | Marshall Clow | 2015-05-27 | 1 | -1/+1 |
| * | Revert 238354 while I figure out what broke in weak_ptr | Marshall Clow | 2015-05-27 | 1 | -2/+2 |