1. 27b4fd3 This is an initial commit of constexpr support as proposed by Richard Smith. This by no means completes constexpr support. Indeed, it hardly scratches the surface. All it does is lay the foundation in <__config> and changes those few places in the library that are already using that foundation. by Howard Hinnant · 12 years ago
  2. dc1345f I believe tuple is still under development in the standard. Daniel Krugler is/will be making convincing arguments that a modified form of LWG 2051 (currently NAD Future) is easily acheivable and desirable. He has demonstrated that a tuple<T...> where all of the T are implicitly convertible from U... should have a tuple constructor that is also implicit, instead of explicit. This would support the use cases in LWG 2051 while not undermining T... with explicit conversions from U.... This check-in is an experimental implementation of Daniel's work. I believe this work to be mature enough to warrant inclusion into libc++. If anyone sees real-world problems that this check in causes, please let me know and I will revert it, and provide the feedback to the LWG. by Howard Hinnant · 12 years ago
  3. 9aa4e11 It appears that the standard accidentally removed the default constructor for error_category. I'm putting it back in. This fixes http://llvm.org/bugs/show_bug.cgi?id=12321. by Howard Hinnant · 12 years ago
  4. 87c61a6 Allow libc++ to be built with CMake from within the LLVM tree. The libc++ part is just some renaming as the variable was already in use, conflicting with something else in the LLVM tree. Contributed by Ruben Van Boxem. by Howard Hinnant · 12 years ago
  5. 1378397 Alter the terminal streams such that they do not get added to the atexit chain, and thus never get destructed. by Howard Hinnant · 12 years ago
  6. 21a84cf Undo some overzealous #ifdefs for LIBCXXRT. by David Chisnall · 12 years ago
  7. f2533a8 Make sure [at_]quick_exit is in std:: by David Chisnall · 12 years ago
  8. b407d45 Don't refer to a function that doesn't exist in the quick_exit test. by David Chisnall · 12 years ago
  9. 558ae17 Fix moneypunct_byname algorithm to more accurately represent C locales in C++. by Jeffrey Yasskin · 12 years ago
  10. 05b57d5 Change some smart_ptr == 0 to smart_ptr == nullptr. Fixes http://llvm.org/bugs/show_bug.cgi?id=12185. by Howard Hinnant · 12 years ago
  11. b56a4ad Define _WCHAR_T in solaris/wchar.h. This fixes a bug where Solaris 10 headers by David Chisnall · 12 years ago
  12. b6e7c30 Fix MSVC / Sun #ifdef ordering. Remove another #if-nothing-#endif. by David Chisnall · 12 years ago
  13. 26cba27 Remove a spurious #ifdef / #endif pair with nothing between them. by David Chisnall · 12 years ago
  14. fcbaf48 Add a warning to ctype<char>::classic_table() if not implemented. by Howard Hinnant · 12 years ago
  15. d0ed21e I'm reverting one of the changes made to exception.cpp in r151717. I'm unsure what the change was trying to do, but it didn't do the right thing for __APPLE__. So instead of trying to guess what was intended, I'm just putting it back the way it was. by Howard Hinnant · 12 years ago
  16. ea27419 Add support files required for building on Solaris. by David Chisnall · 12 years ago
  17. 997e454 Solaris port. Currently sees around 200 test failures, mostly related to by David Chisnall · 12 years ago
  18. f2b2cc6 Make the failure reporting in testit a bit more useful. by David Chisnall · 12 years ago
  19. 8fa14e9 Don't define __locale_raii if we are not going to be using it. by David Chisnall · 12 years ago
  20. 1e8b3f9 Some libcxxrt-compatibility cleanups (avoid defining things twice). by David Chisnall · 12 years ago
  21. 4a13b2d Reduce the number of move constructions when constructing a std::function. This fixes http://llvm.org/bugs/show_bug.cgi?id=12105. by Howard Hinnant · 12 years ago
  22. 0438ea2 vector::emplace_back was mistakenly requiring move assignable. Fixed that and did a little drive-by optimization at the same time. This fixes http://llvm.org/bugs/show_bug.cgi?id=12085. by Howard Hinnant · 12 years ago
  23. a231c37 update test for explicit bool operator. by Howard Hinnant · 12 years ago
  24. 9d84832 At least temporarily move operator new/delete from the abi back to here. I'm having trouble reexporting it as a weak symbol. by Howard Hinnant · 12 years ago
  25. 8417c46 ReExport some mor symbols from libc++abi. by Howard Hinnant · 12 years ago
  26. 896baa2 Silence some warnings in a test. by Howard Hinnant · 12 years ago
  27. 4300839 Hook up to the new clang __is_trivially_constructible and __is_trivially_assignable traits. Fixes r10925427 and http://llvm.org/bugs/show_bug.cgi?id=12038. by Howard Hinnant · 12 years ago
  28. b9344c2 Use Xcode relative compilers when possible by Dave Zarzycki · 12 years ago
  29. 7786188 Modernize conversion to bool to the explicit bool conversion operator (library wide). This fixes http://llvm.org/bugs/show_bug.cgi?id=12058. by Howard Hinnant · 12 years ago
  30. 3fadda3 Modernize relational operators for shared_ptr and unique_ptr. This includes adding support for nullptr, and using less<T*>. Fixes http://llvm.org/bugs/show_bug.cgi?id=12056. by Howard Hinnant · 12 years ago
  31. d41b60b Add missing newlines at EOF. by Bob Wilson · 12 years ago
  32. 335b151 Silence -Wmissing-field-initializers a little higher in the source. by Howard Hinnant · 12 years ago
  33. e0c3b1e Add myself to the CREDITS file. by Jeffrey Yasskin · 12 years ago
  34. 3074a05 Initialize all the fields of struct tm before passing it to strftime. One of the uninitialized fields, probably the pointer field tm_zone, was causing a segfault on linux. Patch contributed by Jeffrey Yasskin. by Howard Hinnant · 12 years ago
  35. 6df1412 Relax pointer output test to accept glibc's output. Patch supplied by Jeffrey Yasskin. by Howard Hinnant · 12 years ago
  36. 3508b38 Give the emulated nullptr_t a default constructor. by Howard Hinnant · 12 years ago
  37. 01198b3 Exercise rvalue arguements to make_shared for C++11 mode. by Howard Hinnant · 12 years ago
  38. e1642e1 Move typeinfos for exceptions in <stdexcept> to the abi by Howard Hinnant · 12 years ago
  39. 1e9f55f Use __is_polymorphic if available. This fixes http://llvm.org/bugs/show_bug.cgi?id=11983 . Patch contributed by Jonathan Sauer. by Howard Hinnant · 12 years ago
  40. 2848444 tuple was accidentally lacking a valid copy assignment operator. It went undetected because I had failed to test assigning from a const lvalue. This fixes http://llvm.org/bugs/show_bug.cgi?id=11921 by Howard Hinnant · 12 years ago
  41. b04ad41 Do not parse sign if a sign is not the next legal character when parsing floating point from an input stream. Fixes http://llvm.org/bugs/show_bug.cgi?id=11871 by Howard Hinnant · 12 years ago
  42. d7a2ad6 Another stab at fixing http://llvm.org/bugs/show_bug.cgi?id=12007. I earlier missed that there are two common_type definitions and corrected only one of them. by Howard Hinnant · 12 years ago
  43. e5285fd Remove reference from common_type definition. It looks like a recent clang decltype implementation got fixed/improved and exposed this. Fixes http://llvm.org/bugs/show_bug.cgi?id=12007. by Howard Hinnant · 12 years ago
  44. b0bfd9b Implement a few optimizations for vector push_back and insert. Fixes r10828365. by Howard Hinnant · 12 years ago
  45. 5f3f35f Provide a move(const T&) overload for C++03 mode to enable moving from rvalues. This is to support proxy references. Fixes r10858112. by Howard Hinnant · 12 years ago
  46. 982331b Fix up narrowing conversions in switch statement. by Howard Hinnant · 13 years ago
  47. 67872dd Make attributes on definition consistent with those on declaration. by Howard Hinnant · 13 years ago
  48. 3c8432f Added some more symbols to the v2 rexport list. by Howard Hinnant · 13 years ago
  49. dea7f39 Prepare for running on top of new libc++abi. by Howard Hinnant · 13 years ago
  50. b1bc0c4 Explicitly convert int to future_errc. Fixes http://llvm.org/bugs/show_bug.cgi?id=11428 by Howard Hinnant · 13 years ago
  51. 1dd5ccf Fix .PHONY target to match new installheaders target. by Bob Wilson · 13 years ago
  52. a187787 Enable full functionality of shared_ptr<const void> by adding allocator<const void>. Credit to John Hurley for discovering this bug. by Howard Hinnant · 13 years ago
  53. 6e4971f Added installheaders target. by Howard Hinnant · 13 years ago
  54. 798e880 Remove installhdrs target from Makefile by Howard Hinnant · 13 years ago
  55. ca1f44d Create target installhdrs as a synonym for do-installhdrs. by Howard Hinnant · 13 years ago
  56. b9b932f Put do-installhdrs target back into Makefile. by Howard Hinnant · 13 years ago
  57. fcf7bd1 Stop installing headers, this is now done by clang by Howard Hinnant · 13 years ago
  58. e1a7b04 Fix http://llvm.org/bugs/show_bug.cgi?id=11752 by Howard Hinnant · 13 years ago
  59. ae8b16e Fix http://llvm.org/bugs/show_bug.cgi?id=11734 by Howard Hinnant · 13 years ago
  60. 5719940 1. Fix make_shared<const T>. 2. Allow allocator<const T> as an extension. 3. Refactor work which fixed unique_ptr<const T[]>. 4. Remove no-longer-needed private declarations from unique_ptr. 5. Add constraints to some shared_ptr and weak_ptr constructors and assignment operators so that is_constructible/is_assignable give the correct answers for shared_ptr and weak_ptr. 6. Make defensive preparations in the shared_ptr free functions for the introduction of shared_ptr<T[]> in the future. 7. As an optimization, add move constructor and move assignment to weak_ptr. by Howard Hinnant · 13 years ago
  61. e4d24ce Happy new year 2012! by NAKAMURA Takumi · 13 years ago
  62. 8292d74 The exception recovery mechanism for the uninitialized_* algorithms did not work for iterators into discontiguous memory. by Howard Hinnant · 13 years ago
  63. 5586c02 Fix memory leak in converting weak_ptr to shared_ptr by Howard Hinnant · 13 years ago
  64. 6cc99fa Fix http://llvm.org/bugs/show_bug.cgi?id=11616 by Howard Hinnant · 13 years ago
  65. 83b2c84 Some fixes to <atomic> operations to explicitly use atomic types and operations. by David Chisnall · 13 years ago
  66. 8e84350 Allow unique_ptr<T const []> to be constructed and assigned from a unique_ptr<T[]> by Howard Hinnant · 13 years ago
  67. 0a63119 Allow unique_ptr<T const []> to be constructed with a T* (in addition to a const T*) by Howard Hinnant · 13 years ago
  68. 8e50a9c Remove quotes from locale name identifier. Credit Edward Meewis. by Howard Hinnant · 13 years ago
  69. f8880d0 As an extension, support incomplete types in the unordered containers to match what we already do in the associative containers. by Howard Hinnant · 13 years ago
  70. d4cf215 Fix http://llvm.org/bugs/show_bug.cgi?id=11461. Credit Alberto Ganesh Barbati. by Howard Hinnant · 13 years ago
  71. c00f75d Installation of CityHash by Craig Silverstein by Howard Hinnant · 13 years ago
  72. 40c13d3 Starting using murmur2 when combining multiple size_t's into a single hash, and also for basic_string. Also made hash<thread::id> ever so slighly more portable. I had to tweak one test which is questionable (definitely not portable) anyway. by Howard Hinnant · 13 years ago
  73. cf2654b Version #next on the hash functions for scalars. This builds on Dave's work, extends it to T*, and changes the way double and long double are handled (no longer convert to float on 32 bit). I also picked up a minor bug with uninitialized bits on the upper end of size_t when sizeof(size_t) > sizeof(T), e.g. in hash<float>. Most of the functionality has been put in one place: __scalar_hash in <memory>. Unfortunately I could not reuse __scalar_hash for hash<long double> on x86 because of the padding bits which need to be zeroed. I didn't want to add this zeroing step to the more general __scalar_hash when it isn't needed (in the absence of padding bits). I'm not ignoring the hash<string> issue (possibly changing that to a better hash). I just haven't gotten there yet. by Howard Hinnant · 13 years ago
  74. 2891675 I had picked up the wrong version of DaveZ's hash patches. Corrected here. by Howard Hinnant · 13 years ago
  75. 62453ea Fixes to hash for long long, unsigned long long, float, double and long double. Credit Dave Zarzycki by Howard Hinnant · 13 years ago
  76. f836d53 unord test fixes by Edward Meewis by Howard Hinnant · 13 years ago
  77. e814a90 Fix http://llvm.org/bugs/show_bug.cgi?id=11459. Patch supplied by Alberto Ganesh Barbati. by Howard Hinnant · 13 years ago
  78. f6d875f Fix http://llvm.org/bugs/show_bug.cgi?id=11428. Fix provided by Alberto Ganesh Barbati by Howard Hinnant · 13 years ago
  79. 438377c Jean-Daniel: __builtin_popcountll support for Windows by Howard Hinnant · 13 years ago
  80. ec3773c Quash a whole bunch of warnings by Howard Hinnant · 13 years ago
  81. 9996844 Further macro protection by replacing _[A-Z] with _[A-Z]p by Howard Hinnant · 13 years ago
  82. 66c6f97 Add protection from min/max macros by Howard Hinnant · 13 years ago
  83. 34869ad Remove redundant iterator assignment detected by Marshall Clow by Howard Hinnant · 13 years ago
  84. 0dd0b4d Refactor libcxx makefile. No functional changes intended. by Bob Wilson · 13 years ago
  85. 704f09b Clarify building instructions for 10.7 by Howard Hinnant · 13 years ago
  86. 91a8272 On FreeBSD, define a macro that causes the unimplemented C99 math.h functions to be declared. This prevents <cmath> users from being broken, unless they actually use the C++ wrappers that call the missing functions. by David Chisnall · 13 years ago
  87. c13b147 Remove support folder from Apple install by Howard Hinnant · 13 years ago
  88. ce6884c Fix ratio arithmetic with zero by Howard Hinnant · 13 years ago
  89. 6cd051b Add include file install path by Howard Hinnant · 13 years ago
  90. 9f8884e Windows port work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  91. 8faa95f Fixed bug in __independent_bits_engine found by Nick (from stackoverflow) by Howard Hinnant · 13 years ago
  92. 78b6828 More windows port work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  93. f46fc93 Windows port work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  94. 8db4aca de-tabbify by Howard Hinnant · 13 years ago
  95. 08e1747 Windows support by Ruben Van Boxem. by Howard Hinnant · 13 years ago
  96. 2baccd8 Fix http://llvm.org/bugs/show_bug.cgi?id=11113 by Howard Hinnant · 13 years ago
  97. 1162445 Starting on musl port by Arvid Picciani by Howard Hinnant · 13 years ago
  98. bc90e2a Remove -Wglobal-constructors from flags. This was an accidental addition. by Howard Hinnant · 13 years ago
  99. 9077326 Update instructions for building on Mac OS 10.6 by Howard Hinnant · 13 years ago
  100. b97de44 Fix <rdar://problem/10256836> getline of an empty string mistakenly causes failure by Howard Hinnant · 13 years ago