1. d615e47 Chris Jefferson submitted this patch to fix http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 13 years ago
  2. 154002b Provide a more readable error message for <atomic> until it is implemented. by Howard Hinnant · 13 years ago
  3. 41fb6e1 Jonathan Sauer found a bug in the way ^ was handled by Howard Hinnant · 13 years ago
  4. d0a2fbf http://llvm.org/bugs/show_bug.cgi?id=9444 by Howard Hinnant · 14 years ago
  5. f9b8998 I have to revert this recent fix to tuple conversions until clang implements cwg 1170. Without this fix pair and tuple don't convert properly. With it, associative containers get access errors when they shouldn't. cwg 1170 fixes the latter. by Howard Hinnant · 14 years ago
  6. 6e5e7e7 Corrected const-correctness on nullptr type_traits, and beefed up the test for nullptr_t. by Howard Hinnant · 14 years ago
  7. 5885da3 Walter Brown brought to my attention that type_traits was failing to correctly classify nullptr_t by Howard Hinnant · 14 years ago
  8. 8058672 Chris Jefferson found a defect in the C++0x working draft by trying to run libc++ against boost. I've submitted an issue to the LWG, and this commit attempts to implement the proposed resolution of that defect report. I'd point to the issue but it hasn't been put into the LWG list yet. The title of the issue will be: Stage 2 accumulate incompatibilty by Howard Hinnant · 14 years ago
  9. fddf722 Chris Jefferson found this bug to pair/tuple introduced by a recent change to the draft that I missed. by Howard Hinnant · 14 years ago
  10. 171869e Fix copy_n to increment only n-1 times for an input iterator. This works much better with std::istream_iterator<int>(std::cin). Credit: Matan Nassau. by Howard Hinnant · 14 years ago
  11. df85e57 Fixed two problems found by Chris Jefferson: Made operator>> for char consistent with gcc. Opened an LWG issue on this one. 2) Renamed some private typedefs which are causing boost grief. by Howard Hinnant · 14 years ago
  12. e7c8da6 http://llvm.org/bugs/show_bug.cgi?id=9326 by Howard Hinnant · 14 years ago
  13. b2080c7 Chris Jefferson spotted a problem with messages_base::catalog while getting libc++ to work on boost. The standard says this type must be an int. But this type is the key returned by the OS facility catopen. On OS X the type returned by catopen is void*, which doesn't fit into an int on 64 bit platforms. Chris suggested using ptrdiff_t instead of void*. It still isn't compliant with the standard, but chances are that this change will fix what is ailing boost. Chris also supplied the algorithm for distinguishing high-order pointers from error conditions. Thanks Chris. by Howard Hinnant · 14 years ago
  14. 6cf5d8c Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris). by Howard Hinnant · 14 years ago
  15. 621ee22 fix stupid type-o by Howard Hinnant · 14 years ago
  16. 31b8e61 Installed __has_feature(is_convertible_to) and __has_feature(is_base_of) by Howard Hinnant · 14 years ago
  17. 47a7cce Missing traits::to_int_type in fstream by Howard Hinnant · 14 years ago
  18. 2529d02 Qualify calls to addressof with std::. Bug 9106 by Howard Hinnant · 14 years ago
  19. 211f0ee Bug 9096 - list::iterator not default constructible by Howard Hinnant · 14 years ago
  20. 80f9180 minor corrections to test, and hook is_base_of up to clang intrinsic by Howard Hinnant · 14 years ago
  21. 9ca45e2 Eliminate extraneous {}; by Douglas Gregor · 14 years ago
  22. 99b2f76 Make forward_list splice_after and merge work for lvalue lists by Howard Hinnant · 14 years ago
  23. 091c5ac Reverted previous fix to is_convertible as it caused more problems than it fixed. But this reverted fix will only matter for non-clang compilers. Installed __is_convertible_to for clang. by Howard Hinnant · 14 years ago
  24. 497ac97 Inline namespaces are always available in Clang. Rely on that without by Douglas Gregor · 14 years ago
  25. aab015a Teach move_iterator that rvalue references cannot bind to non-function by Douglas Gregor · 14 years ago
  26. 9f193f2 Add always_inline to string move constructors by Howard Hinnant · 14 years ago
  27. 5ea2e37 Remove an (incorrect) compiler workaround in the __mu function. The by Douglas Gregor · 14 years ago
  28. 56a85ca tweak for readability (no functionality change) by Howard Hinnant · 14 years ago
  29. 6c66994 An rvalue reference cannot bind to an lvalue, so static_cast the by Douglas Gregor · 14 years ago
  30. f9e1c7e Eliminate the C++0x-only is_convertible testing function that accepts by Douglas Gregor · 14 years ago
  31. f83417b Chandler Carruth changed >> to > > in several places. by Howard Hinnant · 14 years ago
  32. 5f5859c Add attribute to inlined member. by Howard Hinnant · 14 years ago
  33. 6fd4b66 Fixing an ambiguity in variadics found by clang. by Howard Hinnant · 14 years ago
  34. ac38bae fix guard by Howard Hinnant · 14 years ago
  35. 52c4eb2 Two minor fixes: 1. Put integral_constant conversion to integral in even without constexpr support. 2. Add ios_base to <iosfwd>. The latter is being tracked by LWG 2026. by Howard Hinnant · 14 years ago
  36. 04240d9 Reverting an old optimization that conflicts with the new allocator model, and causes some test casees to compile that shouldn't. by Howard Hinnant · 14 years ago
  37. 93c382b Marshall Clow's fix for Bug 8421. by Howard Hinnant · 14 years ago
  38. 2d72b1e Effort to reduce the number of exported symbols by Howard Hinnant · 14 years ago
  39. e48e366 Reduced copying cost of tuple_cat from quadratic to linear. by Howard Hinnant · 14 years ago
  40. 0e1493e LWG 1385 [FCD] tuple_cat should be a single variadic signature (http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-active.html#1385). This issue is only in Ready status, meaning it is not official, but probably will be this March in Madrid. It was tentatively accepted in Batavia with the previso that Bill and I didn't have any problems implementing it. This is my part of that agreement. by Howard Hinnant · 14 years ago
  41. eee7698 The implementation of the new definition of result_of (N3123) resulted in some test failures in [func.memfn] that I failed to previously notice. This corrects that mistake. by Howard Hinnant · 14 years ago
  42. 626916f Add CMake build and fix major Linux blockers. by Michael J. Spencer · 14 years ago
  43. 31aaf55 N3158 Missing preconditions for default-constructed match_result objects by Howard Hinnant · 14 years ago
  44. 770d1c4 After a long break to wait for the atomic spec to settle, this completes the library part of <atomic>. It currently won't even parse as it depends on the existence of the intrinsics specified at http://libcxx.llvm.org/atomic_design_a.html. Everything has been tested using fake intrinsics which have now been removed. As the intrinsics come online, the ATOMIC_* macros will need to be adjusted to reflect which operations are lock-free. These macros will probably need to be #ifdef'd for each supported platform. by Howard Hinnant · 14 years ago
  45. d2f6afb atomics ... by Howard Hinnant · 14 years ago
  46. 91e2f26 Work on <atomic> continues. The file size is actually sane now... by Howard Hinnant · 14 years ago
  47. 4777bf2 Getting <atomic> warmed back up. We have a hopefully more stable spec now. And I believe the intrinsic spec at http://libcxx.llvm.org/atomic_design_a.html is still good. by Howard Hinnant · 14 years ago
  48. a445151 N3189 Observers for the three handler functions by Howard Hinnant · 14 years ago
  49. 7de4790 Implemented N3194 by Howard Hinnant · 14 years ago
  50. ac417fa Minor fixup in <ratio> and add optional support for shared_mutex and upgrade_mutex which must be opted into with #define _LIBCPP_SHARED_LOCK by Howard Hinnant · 14 years ago
  51. d397d03 Add template alias emulation to <ratio> by Howard Hinnant · 14 years ago
  52. 6689564 N3188 - Revision to N3113: Async Launch Policies (CH 36) by Howard Hinnant · 14 years ago
  53. f8f8521 N3191: C++ Timeout Specification by Howard Hinnant · 14 years ago
  54. f048fe3 N3123 by Howard Hinnant · 14 years ago
  55. 1468b66 N3142. Many of these traits are just placeholders with medium quality emulation; waiting on compiler intrinsics to do it right. by Howard Hinnant · 14 years ago
  56. 995676a LWG 1522 by Howard Hinnant · 14 years ago
  57. 9650b6c LWG 1439 by Howard Hinnant · 14 years ago
  58. 2f6a627 LWG 1339 by Howard Hinnant · 14 years ago
  59. 278bf2d LWG 1432 by Howard Hinnant · 14 years ago
  60. 4776107 LWG 1404 by Howard Hinnant · 14 years ago
  61. 34d6b19 LWG 1325 by Howard Hinnant · 14 years ago
  62. 7b2cb48 LWG 1323 by Howard Hinnant · 14 years ago
  63. cd2254b LWG 1191 by Howard Hinnant · 14 years ago
  64. 86ed8ae LWG 1118 by Howard Hinnant · 14 years ago
  65. e32b5e2 Update <string> to use allocator_traits. by Howard Hinnant · 14 years ago
  66. b64f8b0 license change by Howard Hinnant · 14 years ago
  67. 28dbbe0 Dave Zarzycki showed how the efficiency of shared_ptr could be significantly by Howard Hinnant · 14 years ago
  68. 726a76f I have reverted all contributions made by Jesse Towner in revision 110724 by Howard Hinnant · 14 years ago
  69. 4e59948 Fixed bug in random_shuffle to avoid swapping with self by Howard Hinnant · 14 years ago
  70. bce9c31 [atomics.types.address] by Howard Hinnant · 14 years ago
  71. 5bbe97d atomic_schar, atomic_uchar, atomic_short, atomic_ushort, atomic_int, atomic_uint, atomic_long, atomic_ulong, atomic_llong, atomic_ullong, atomic_char16_t, atomic_char32_t and atomic_wchar_t. by Howard Hinnant · 14 years ago
  72. e738501 atomic_char by Howard Hinnant · 14 years ago
  73. 21ef47f Changing <atomic> to follow Design A by Howard Hinnant · 14 years ago
  74. 5306d68 Convert __thread_local_data to the singleton pattern by Howard Hinnant · 14 years ago
  75. 8177207 Bug 7983 fixed by Bernhard Rosenkraenzer by Howard Hinnant · 14 years ago
  76. 3c143ad Patch by Marshall Clow to make the assignment operators of piecewise_constant_distribution and piecewise_linear_distribution exception safe. by Howard Hinnant · 14 years ago
  77. ffb9a4e Corrected an inconsistency with recent changes in tuple, and perfect forwarding within bind by Howard Hinnant · 14 years ago
  78. 6cac2c2 Make flag type configurable by the compiler by Howard Hinnant · 14 years ago
  79. b4ac745 Thanks Sebastian\! by Howard Hinnant · 14 years ago
  80. 002f1d3 Filling out the infrastructure in <atomic> by Howard Hinnant · 14 years ago
  81. 26994e3 __has_feature crutch by Howard Hinnant · 14 years ago
  82. 611fdaf Still working on the basic design of <atomic>. I'm working towards a system by which the compiler only needs to define the strongest intrinsics it can. Weaker atomics in the library automatically try stronger and stronger variants, picking the weakest compiler intrinsic available. If no compiler intrinsics are available for a given operation, the library locks a mutex and does the job. Better documentation to follow... by Howard Hinnant · 14 years ago
  83. 7c0c696 Tweak to make clang blocks work with std::functional (very fragile) by Howard Hinnant · 14 years ago
  84. 79101ae [atomics.flag] completed. Initialization is not working on clang and can't be made to work without defaulted default constructors. by Howard Hinnant · 14 years ago
  85. f701e25 Name change of intrinsics as suggested by Jeffrey Yasskin by Howard Hinnant · 14 years ago
  86. 767ae2b Contemplating this <atomic> reorganization... by Howard Hinnant · 14 years ago
  87. ed760f4 Wrestling with the slowly dawning realization that <atomic> isn't implementable on any compiler at my disposal... by Howard Hinnant · 14 years ago
  88. d1176e2 [atomics.order] by Howard Hinnant · 14 years ago
  89. 8f73c63 Getting started on <atomic> by Howard Hinnant · 14 years ago
  90. d05c6e6 Bugzilla 8231 by Howard Hinnant · 14 years ago
  91. e049cc5 Cleaning up some tuple code. by Howard Hinnant · 14 years ago
  92. ee6ccd0 visibility-decoration sweep completed. by Howard Hinnant · 14 years ago
  93. 8d7a955 visibility-decoration. by Howard Hinnant · 14 years ago
  94. 28c97e6 visibility-decoration. by Howard Hinnant · 14 years ago
  95. aef07cb visibility-decoration. by Howard Hinnant · 14 years ago
  96. b9af2ea visibility-decoration. by Howard Hinnant · 14 years ago
  97. 8289481 visibility-decoration. by Howard Hinnant · 14 years ago
  98. 68a8e90 visibility-decoration. by Howard Hinnant · 14 years ago
  99. 8c6cbb2 visibility-decoration. by Howard Hinnant · 14 years ago
  100. 42a63a7 visibility-decoration. by Howard Hinnant · 14 years ago