1. bbda4db Add a simple .arcconfig to make using the 'arc' commandline tool and the by Chandler Carruth · 12 years ago
  2. d1a7479 Remove test for eof from istreambuf_iterator constructors. It is no longer necessary and potentially violates the constructor's noexcept spec. by Howard Hinnant · 12 years ago
  3. 21772ec Saleem Abdulrasool: GCC complains about the template functions as potentially not being able to be by Howard Hinnant · 12 years ago
  4. 2328902 Saleem Abdulrasool: Add entry to CREDITS.TXT. by Howard Hinnant · 12 years ago
  5. 5f767b7 Saleem Abdulrasool: cleanup a few more compile warnings emitted by GCC. by Howard Hinnant · 12 years ago
  6. bf68bdc Saleem Abdulrasool: avoid hardcoding buffer lengths. by Howard Hinnant · 12 years ago
  7. 0aa900e Saleem Abdulrasool: Silence warning and reduce unnecessary code in hash.cpp. by Howard Hinnant · 12 years ago
  8. c6e54b9 Saleem Abdulrasool: This just rounds up a few compile warnings emitted by GCC (4.7.2). by Howard Hinnant · 12 years ago
  9. 27c836f Remove redundant inits. Patch by Eitan Adler. by Chad Rosier · 12 years ago
  10. 3793a7d Test case for http://llvm.org/bugs/show_bug.cgi?id=14670. by Howard Hinnant · 12 years ago
  11. ee717d8 Hyeon-Bin Jeong: readsome() need to reset gcount to zero. This fixes http://llvm.org/bugs/show_bug.cgi?id=14670. by Howard Hinnant · 12 years ago
  12. b2f2b68 Implement std::is_base_of for the case where we don't have a compiler by Richard Smith · 12 years ago
  13. a46482e Added static_assert to std::get<N>(std::array) calls to catch "out of bounds" calls by Marshall Clow · 12 years ago
  14. 3d4f92c Updated CREDITS.TXT by Howard Hinnant · 12 years ago
  15. 0a69fa1 Zhang Xiongpang: Add definitions for const data members. Fixes http://llvm.org/bugs/show_bug.cgi?id=14585. by Howard Hinnant · 12 years ago
  16. 7fa77a7 Modify testit to use the local headers and lib. Thanks go to Jeffrey Yasskin. by Howard Hinnant · 12 years ago
  17. a358fbe [CMake] Add support for selecting which c++ abi library to use. by Michael J. Spencer · 12 years ago
  18. 53008d8 Remove 'noreturn' attribute from friend declaration. This attribute will be by Richard Smith · 12 years ago
  19. af01e70 tests/lit: Change test default parameters to assume local build. by Daniel Dunbar · 12 years ago
  20. b0895ff Fix type-o. by Howard Hinnant · 12 years ago
  21. 641f6c1 Remove by-chapter breakdown of what is implemented. The chart is now obsolete. by Howard Hinnant · 12 years ago
  22. 8a9c5ea Dimitry Andric: When using libc++ headers on FreeBSD, in combination with -std=c++98, by Howard Hinnant · 12 years ago
  23. 984f10f istreambuf_iterator increment should call sbumpc instead of snextc. Patch by Howard Hinnant · 12 years ago
  24. 537b2fa Restrict optimized __pad_and_output implementation detail to desired releases. by Howard Hinnant · 12 years ago
  25. faa1716 Change C++0x references to C++11, Fixes bug #12745 by Marshall Clow · 12 years ago
  26. 0919dba Dimitry Andric: Silence some miscellaneous warnings. by Howard Hinnant · 12 years ago
  27. 9bae2a9 Dimitry Andric: Silence some warnings in <locale>. by Howard Hinnant · 12 years ago
  28. 9d5e9d3 Enable the tuple interface of pair in C++03 mode. by Howard Hinnant · 12 years ago
  29. 22b781b Update instructions for building and using libc++ on Mac OS by Howard Hinnant · 12 years ago
  30. ff92677 Provide a way to disable use of extern templates in libc++. This is intended for the clients of libc++, not the libc++ build. The dylib should always contain the extern templates. To disable the client needs to put -D'_LIBCPP_EXTERN_TEMPLATE(...)=' on the command line. by Howard Hinnant · 12 years ago
  31. 73c85c7 peek should set eofbit if sgetc() returns eof. by Howard Hinnant · 12 years ago
  32. 4af2cf3 Richard Smith: This fixes a problem in std::is_constructible for incomplete types, and those types with a user-defined operator,(). by Howard Hinnant · 12 years ago
  33. 9c0df14 Rename uses of _ and __ because these are getting stepped on by macros from other system code. by Howard Hinnant · 12 years ago
  34. eac2a01 Add an entry in CREDITS.TXT by Argyrios Kyrtzidis · 12 years ago
  35. 1c0be38 Use traits_type::to_int_type in basic_streambuf<_CharT, _Traits>::xsputn when calling overflow to correctly handle negative signed character types. This fixes http://llvm.org/bugs/show_bug.cgi?id=14074. by Howard Hinnant · 12 years ago
  36. 999fc97 Dimitry Andric: FreeBSD only: Add the C11 aligned_alloc to <cstdlib> and adjust the inclusion of quick_exit. by Howard Hinnant · 12 years ago
  37. 1dc6f7a Don't neglect to "return *this". by Argyrios Kyrtzidis · 12 years ago
  38. 75536ba Holger Arnold: Correct the use and testing of __GNUC__ and __GNUC_MINOR__ in <__config>. by Howard Hinnant · 12 years ago
  39. 95c0e9f Make vector::iterator and string::iterator more resilient against overly generic relational operators. by Howard Hinnant · 12 years ago
  40. 155ff6e Due to a mistake on my own part, I need to burn some version numbers. This does not impact any of the implementation of libc++, and does not impact the ABI in any way. by Howard Hinnant · 12 years ago
  41. 8d36c43 Bump _LIBCPP_VERSION to 1002 by Howard Hinnant · 12 years ago
  42. c25d158 Apply the emulated nullptr_t with constexpr. This is an unusual configuration that would take advantage of this. But it has popped up in the wild and does no harm to support it. by Howard Hinnant · 12 years ago
  43. c004e2e Updating email address by Marshall Clow · 12 years ago
  44. 3c6fefd Fix installheaders target to do what it did prior to r161760. rdar://12348765 by Bob Wilson · 12 years ago
  45. 2d3f4ee Add overflow check to tanh(complex) and reduce to finite answer. Fixes http://llvm.org/bugs/show_bug.cgi?id=13874 by Howard Hinnant · 12 years ago
  46. a585de6 Overloaded __pad_and_output on ostreambuf_iterator and in this overload call sputn instead of dereferencing the iterator which calls sputc. This is intended to be purely a performance optimization, especially for clients who may have overloaded the virtual function xsputn. by Howard Hinnant · 12 years ago
  47. 7eb9f1e Align <atomic> with clang r163964 which disallows const _Atomic types. by Howard Hinnant · 12 years ago
  48. 6cb977b Update CREDITS.TXT by Howard Hinnant · 12 years ago
  49. 33be35e Dimitry Andric: many visibility fixes. Howard: Much appreciated. Can you send me a patch to CREDITS.TXT? by Howard Hinnant · 12 years ago
  50. 5c90cba Dimitry Andric: FreeBSD porting tweaks for PTHREAD_MUTEX_INITIALIZER and PTHREAD_COND_INITIALIZER by Howard Hinnant · 12 years ago
  51. 460b4ca Some minor mingw64 porting tweaks from Glen. by Howard Hinnant · 12 years ago
  52. cf115d2 Change sleep_for, sleep_until, and the condition_variable timed wait by Howard Hinnant · 12 years ago
  53. c417a80 Hyeon-bin Jeong: libc++ fails to create any classes inherit from basic_ios if they by Howard Hinnant · 12 years ago
  54. 70e441a Update CREDITS.TXT by Howard Hinnant · 12 years ago
  55. a516028 Michel Morin: My previous fix for C++03 was incomplete. by Howard Hinnant · 12 years ago
  56. 3882d39 Wrap throw in _LIBCPP_NO_EXCEPTIONS in debug.cpp. Calls abort if can't throw an exception. Fixes http://llvm.org/bugs/show_bug.cgi?id=13082. by Howard Hinnant · 12 years ago
  57. 37bdf0e Have basic_istream seekg, putback and unget first clear eofbit. Fixes http://llvm.org/bugs/show_bug.cgi?id=13089. by Howard Hinnant · 12 years ago
  58. d57de09 Add Hyeon-bin Jeong to CREDITS.TXT by Howard Hinnant · 12 years ago
  59. d305d3c Hyeon-Bin Jeong: 1. sync() should reset it’s external buffer pointers. by Howard Hinnant · 12 years ago
  60. ec423cb Fix basic_filebuf's internal buffer is shrinking when using with some codecvt. http://llvm.org/bugs/show_bug.cgi?id=13602 by Howard Hinnant · 12 years ago
  61. e7d59f2 Fixed order of calling use_facet vs setbuf in basic_filebuf default constructor. by Howard Hinnant · 12 years ago
  62. 8540d4c basic_filebuf needs to delay obtaining a codecvt facet from the global locale to give the client a chance to imbue the proper locale. Fixes http://llvm.org/bugs/show_bug.cgi?id=13663. by Howard Hinnant · 12 years ago
  63. 08a0b48 Fix a typo in the docs by Marshall Clow · 12 years ago
  64. ffab058 In C++03 mode add an explicit conversion from int to the emulated class enum. Fixes a problem reported by C. Bergström. by Howard Hinnant · 12 years ago
  65. 96c60b4 Patch contributed by Dev Dude for mingw64 port. by Howard Hinnant · 12 years ago
  66. a0852ff Apply patches supplied by Michel Morin in http://llvm.org/bugs/show_bug.cgi?id=13601 to correct bugs in is_convertible for the case that the intrinsic __is_convertible_to is not available. by Howard Hinnant · 12 years ago
  67. 4ae952a Consistently label __bit_array as a struct, not a class. by Howard Hinnant · 12 years ago
  68. 364e945 Remove obsolete do-installhdrs target (again). by Howard Hinnant · 12 years ago
  69. 2a03b71 Remove obsolete do-installhdrs target. by Howard Hinnant · 12 years ago
  70. e87514a Patch constributed by Michel Moren in http://llvm.org/bugs/show_bug.cgi?id=13592 . Fixes is_convertible<From, To> when To is an abstract type. by Howard Hinnant · 12 years ago
  71. 4490c4a Change size of reference count field in __libcpp_nmstr from 32 bits to 64 bits for 64 bit targets. This is controls the data layout of all exceptions defined in <stdexcept>. This aligns the ABI with that of gcc-4.2. by Howard Hinnant · 12 years ago
  72. 584db42 std::equal operating on non-const __bit_iterators was not working. This fixes it. by Howard Hinnant · 12 years ago
  73. e103a3d Andrew Morrow: The current CMake setup for libc++ incorrectly uses the variable by Howard Hinnant · 12 years ago
  74. 6886dd1 Loosen up the timing requirements on 4 more tests. by Howard Hinnant · 12 years ago
  75. 4b2f420 Performance tweaking rotate. by Howard Hinnant · 12 years ago
  76. cd99236 Andrew Morrow: The attached patch updates the initialization of the 'struct tm' in by Howard Hinnant · 12 years ago
  77. 069bdd5 Andrew Morrow: There are two tests under test/utilities/memory that heap allocate two by Howard Hinnant · 12 years ago
  78. 63b2f4f Andrew Morrow: The attached patch updates the lit.config for libc++ unit tests so by Howard Hinnant · 12 years ago
  79. ef793f2 Andrew Morrow: Among the various libc++ tests that currently don't pass on Linux are by Howard Hinnant · 12 years ago
  80. 403f91a Andrew Morrow: The attached patch is an attempt to implement by Howard Hinnant · 12 years ago
  81. 6d39f9f Andrew Morrow: This patch fixes by Howard Hinnant · 12 years ago
  82. ee7a0bf Andrew Morrow: Attached is a writeup of the current state of the libc++ test suite on Linux. by Howard Hinnant · 12 years ago
  83. 65f059b Despite my pathological distrust of spin locks, the number just don't lie. I've put a small spin in __sp_mut::lock() on std::mutex::try_lock(), which is testing quite well. In my experience, putting in a yield for every failed iteration is also a major performance booster. This change makes one of the performance tests I was using (a highly contended one) run about 20 times faster. by Howard Hinnant · 12 years ago
  84. 7a7b6d8 Updated status by Howard Hinnant · 12 years ago
  85. 30055c6 Updated the complete by-chapter graph by Howard Hinnant · 12 years ago
  86. 5fec82d Implement [util.smartptr.shared.atomic]. This is the last unimplemented by Howard Hinnant · 12 years ago
  87. 116ce6a Update CREDITS.TXT by Howard Hinnant · 12 years ago
  88. afcac1a Patch by Andrew C. Morrow: shims to work around macroized getc and putc on linux. On my eglibc 2.13 based Debian system 'getc' is a macro defined in by Howard Hinnant · 12 years ago
  89. 8b5bb3c Patch by Andrew C. Morrow: Conditionally include cxxabi.h in new.cpp and typeinfo.cpp. Both new.cpp and typeinfo.cpp have code that is conditionally compiled by Howard Hinnant · 12 years ago
  90. ca8eb83 <algorithm> no longer needs to include <cstdlib>, but can get away with just <cstddef>. This was brought to my attention by Salvatore Benedetto in his port to a bare-metal coretex-m3. This exposed two test bugs where an explicit #include <cstdlib> was needed. by Howard Hinnant · 12 years ago
  91. f3d62ea locale::id really needs to be constructed at compile time. by Howard Hinnant · 12 years ago
  92. 0405cc4 libc++: switch from using _ATTRIBUTE(noreturn) (which conflicts with a by Richard Smith · 12 years ago
  93. 8131a01 Apple LWG 2067: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3318.html#2067 . This is the only actionable change that has been made to the C++ draft since C++11. In general it has not been decided exactly how libc++ will track changes made to C++11. New features and design changes will probably be #ifdef'd, especially if they are not backwards compatible. Defects and 'dumb mistakes' are more likely to just be put in. Decisions on telling one from the other will be made on a case by case basis. by Howard Hinnant · 12 years ago
  94. 8bf01dd noexcept applied to <future>. by Howard Hinnant · 12 years ago
  95. 6e1d851 noexcept applied to <thread>. by Howard Hinnant · 12 years ago
  96. c8f7413 noexcept applied to <condition_variable>. by Howard Hinnant · 12 years ago
  97. 499c61f noexcept and constexpr applied to <mutex>. by Howard Hinnant · 12 years ago
  98. 46623a0 noexcept and constexpr applied to <regex>. by Howard Hinnant · 12 years ago
  99. f57bd56 noexcept and constexpr applied to <ios>. by Howard Hinnant · 12 years ago
  100. bd14308 noexcept applied to <valarray>. by Howard Hinnant · 12 years ago