| Commit message (Expand) | Author | Age | Files | Lines |
| * | This patch introduces an alternative layout for basic_string which when the s... | Howard Hinnant | 2013-04-30 | 1 | -12/+107 |
| * | Use protected version of the malloc attribute in case source wants to | Joerg Sonnenberger | 2013-04-29 | 1 | -1/+1 |
| * | GCC doesn't support __has_attribute. | Joerg Sonnenberger | 2013-04-27 | 1 | -0/+4 |
| * | default_delete needs a static_assert against void types. I had previously th... | Howard Hinnant | 2013-04-24 | 1 | -0/+2 |
| * | Modest performance improvement for std::string's operator==. | Howard Hinnant | 2013-04-22 | 1 | -7/+28 |
| * | Somehow aligned_union got dropped through the cracks. This adds it. Did a d... | Howard Hinnant | 2013-04-22 | 1 | -3/+34 |
| * | After years of telling people: 'If you ever find any of my code that self-mov... | Howard Hinnant | 2013-04-18 | 1 | -1/+2 |
| * | addressof misbehaving for type with an implicit conversion operator to char&.... | Howard Hinnant | 2013-04-16 | 1 | -1/+1 |
| * | Numeric parsing was getting the wrong answer when faced with very long inputs... | Howard Hinnant | 2013-04-15 | 1 | -16/+132 |
| * | Accidentally disallowed explicit tuple conversions when all elements of the t... | Howard Hinnant | 2013-04-14 | 1 | -1/+1 |
| * | Set failbit when strtold sets errno to ERANGE when parsing floating point val... | Howard Hinnant | 2013-04-13 | 1 | -0/+7 |
| * | Ruben Van Boxem: Turn islower_l and isupper_l into functions (instead of mac... | Howard Hinnant | 2013-04-12 | 1 | -2/+15 |
| * | Change <cwchar> and <cstring> to look out for flags which may or may not be s... | Howard Hinnant | 2013-04-08 | 2 | -8/+17 |
| * | Fix bug in __libcpp_db::__iterator_copy. Add debug test for swaping lists. | Howard Hinnant | 2013-04-05 | 1 | -1/+1 |
| * | More work on debug mode for list. | Howard Hinnant | 2013-04-05 | 1 | -0/+11 |
| * | 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 |
| * | Fix stupid but harmless type-o. Fixes http://llvm.org/bugs/show_bug.cgi?id=1... | Howard Hinnant | 2013-04-03 | 1 | -2/+2 |
| * | The move / swap members were not correctly taking all of the possible states ... | Howard Hinnant | 2013-04-03 | 1 | -40/+124 |
| * | Reference: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-2013032... | Howard Hinnant | 2013-04-02 | 1 | -0/+16 |
| * | Richard Smith: It was pointed out to me off-list that libc++'s non-compiler-b... | Howard Hinnant | 2013-04-02 | 1 | -9/+5 |
| * | Bruce Mitchener, Jr.: Port to emscripten. Fixes http://llvm.org/bugs/show_bu... | Howard Hinnant | 2013-03-29 | 2 | -6/+8 |
| * | Second try at r178075. The llvm breakage has been fixed by r178240. | Howard Hinnant | 2013-03-28 | 1 | -16/+64 |
| * | Add missing #ifndef _LIBCPP_NO_EXCEPTIONS around throw in include/thread. | Howard Hinnant | 2013-03-28 | 1 | -0/+2 |
| * | Revert r178075, "Tighten up the iterator requirements ...", it breaks LLVM | Daniel Dunbar | 2013-03-27 | 1 | -64/+16 |
| * | Tighten up the iterator requirements for the vector member templates. This i... | Howard Hinnant | 2013-03-26 | 1 | -16/+64 |
| * | Another vector debug mode test, and a static test on Allocator::value_type. ... | Howard Hinnant | 2013-03-26 | 1 | -0/+3 |
| * | Need one more swap overload for swapping two lvalue vector<bool>::reference's. | Howard Hinnant | 2013-03-26 | 1 | -0/+10 |
| * | Added debug tests for indexing, pop_back and both forms of erase. Added an i... | Howard Hinnant | 2013-03-25 | 1 | -0/+2 |
| * | Debug mode: learning to crawl. I need to set up some tests that actually tes... | Howard Hinnant | 2013-03-25 | 1 | -1/+3 |
| * | Fix buffer read overflow in money_get::do_get(). Found by UBSan | Marshall Clow | 2013-03-22 | 1 | -1/+1 |
| * | Fix undefined behavior in syntax_option_type::operator~ and match_flag_type::... | Marshall Clow | 2013-03-22 | 1 | -2/+2 |
| * | This is an optimization which produces improved launching time. There should... | Howard Hinnant | 2013-03-19 | 1 | -14/+14 |
| * | Removed raw references to __sun__, __FreeBSD__, __GLIBC__ and __linux__; now ... | Marshall Clow | 2013-03-18 | 3 | -12/+12 |
| * | Removed raw references to _MSC_VER; now just check to see if it is defined. | Marshall Clow | 2013-03-18 | 1 | -6/+6 |
| * | Removed raw references to __APPLE__; now just check to see if it is defined. | Marshall Clow | 2013-03-18 | 3 | -5/+5 |
| * | Removed raw references to _WIN32; now just check to see if it is defined. | Marshall Clow | 2013-03-18 | 4 | -8/+8 |
| * | This SO question: http://stackoverflow.com/questions/15344402/how-can-i-read... | Howard Hinnant | 2013-03-11 | 1 | -1/+1 |
| * | Parsing floating point numbers with very long precision was broken, and this ... | Howard Hinnant | 2013-03-08 | 1 | -7/+13 |
| * | Albert Wong: definition for regex_traits<_CharT>::__regex_word. | Howard Hinnant | 2013-03-07 | 1 | -0/+4 |
| * | Change _LIBCPP_TYPE_VIS to use __type_visibility__(default) instead of __visi... | Howard Hinnant | 2013-03-07 | 1 | -2/+6 |
| * | No functionality change at this time. I've split _LIBCPP_VISIBLE up into two... | Howard Hinnant | 2013-03-06 | 62 | -775/+782 |
| * | Have basic_istream::read call sgetn intead of sbumpc individual characters. ... | Howard Hinnant | 2013-03-06 | 1 | -10/+3 |
| * | Correct silly type-o. Thanks Richard. | Howard Hinnant | 2013-03-06 | 1 | -1/+1 |
| * | The bitset(unsigned long long) constructor was broken by the constexpr additi... | Howard Hinnant | 2013-03-06 | 1 | -0/+7 |
| * | Alexey Samsonov: #ifdefs out undefined function in static build of libc++ w/o... | Howard Hinnant | 2013-02-25 | 1 | -3/+6 |
| * | Constrain bind operator()() to not exist if the call is not valid. Fixes htt... | Howard Hinnant | 2013-02-21 | 1 | -6/+42 |
| * | Change the 'result_type' from unsigned to 'uint_fast32_t'. This eliminates tr... | Marshall Clow | 2013-02-07 | 1 | -1/+1 |
| * | Revert accidental check-in. These changes are probably good, but premature a... | Howard Hinnant | 2013-02-07 | 4 | -35/+8 |
| * | Michael van der Westhuizen: The attached patch add support for building again... | Howard Hinnant | 2013-02-07 | 4 | -8/+35 |
| * | Marcin Zalewski: Change the name of a template parameter in __copy_backward ... | Howard Hinnant | 2013-02-06 | 1 | -2/+2 |