1. 6fd4b66 Fixing an ambiguity in variadics found by clang. by Howard Hinnant · 14 years ago
  2. ac38bae fix guard by Howard Hinnant · 14 years ago
  3. 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
  4. 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
  5. 93c382b Marshall Clow's fix for Bug 8421. by Howard Hinnant · 14 years ago
  6. 2d72b1e Effort to reduce the number of exported symbols by Howard Hinnant · 14 years ago
  7. e48e366 Reduced copying cost of tuple_cat from quadratic to linear. by Howard Hinnant · 14 years ago
  8. 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
  9. 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
  10. 626916f Add CMake build and fix major Linux blockers. by Michael J. Spencer · 14 years ago
  11. 31aaf55 N3158 Missing preconditions for default-constructed match_result objects by Howard Hinnant · 14 years ago
  12. 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
  13. d2f6afb atomics ... by Howard Hinnant · 14 years ago
  14. 91e2f26 Work on <atomic> continues. The file size is actually sane now... by Howard Hinnant · 14 years ago
  15. 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
  16. a445151 N3189 Observers for the three handler functions by Howard Hinnant · 14 years ago
  17. 7de4790 Implemented N3194 by Howard Hinnant · 14 years ago
  18. 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
  19. d397d03 Add template alias emulation to <ratio> by Howard Hinnant · 14 years ago
  20. 6689564 N3188 - Revision to N3113: Async Launch Policies (CH 36) by Howard Hinnant · 14 years ago
  21. f8f8521 N3191: C++ Timeout Specification by Howard Hinnant · 14 years ago
  22. f048fe3 N3123 by Howard Hinnant · 14 years ago
  23. 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
  24. 995676a LWG 1522 by Howard Hinnant · 14 years ago
  25. 9650b6c LWG 1439 by Howard Hinnant · 14 years ago
  26. 2f6a627 LWG 1339 by Howard Hinnant · 14 years ago
  27. 278bf2d LWG 1432 by Howard Hinnant · 14 years ago
  28. 4776107 LWG 1404 by Howard Hinnant · 14 years ago
  29. 34d6b19 LWG 1325 by Howard Hinnant · 14 years ago
  30. 7b2cb48 LWG 1323 by Howard Hinnant · 14 years ago
  31. cd2254b LWG 1191 by Howard Hinnant · 14 years ago
  32. 86ed8ae LWG 1118 by Howard Hinnant · 14 years ago
  33. e32b5e2 Update <string> to use allocator_traits. by Howard Hinnant · 14 years ago
  34. b64f8b0 license change by Howard Hinnant · 14 years ago
  35. 28dbbe0 Dave Zarzycki showed how the efficiency of shared_ptr could be significantly by Howard Hinnant · 14 years ago
  36. 726a76f I have reverted all contributions made by Jesse Towner in revision 110724 by Howard Hinnant · 14 years ago
  37. 4e59948 Fixed bug in random_shuffle to avoid swapping with self by Howard Hinnant · 14 years ago
  38. bce9c31 [atomics.types.address] by Howard Hinnant · 14 years ago
  39. 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
  40. e738501 atomic_char by Howard Hinnant · 14 years ago
  41. 21ef47f Changing <atomic> to follow Design A by Howard Hinnant · 14 years ago
  42. 5306d68 Convert __thread_local_data to the singleton pattern by Howard Hinnant · 14 years ago
  43. 8177207 Bug 7983 fixed by Bernhard Rosenkraenzer by Howard Hinnant · 14 years ago
  44. 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
  45. ffb9a4e Corrected an inconsistency with recent changes in tuple, and perfect forwarding within bind by Howard Hinnant · 14 years ago
  46. 6cac2c2 Make flag type configurable by the compiler by Howard Hinnant · 14 years ago
  47. b4ac745 Thanks Sebastian\! by Howard Hinnant · 14 years ago
  48. 002f1d3 Filling out the infrastructure in <atomic> by Howard Hinnant · 14 years ago
  49. 26994e3 __has_feature crutch by Howard Hinnant · 14 years ago
  50. 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
  51. 7c0c696 Tweak to make clang blocks work with std::functional (very fragile) by Howard Hinnant · 14 years ago
  52. 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
  53. f701e25 Name change of intrinsics as suggested by Jeffrey Yasskin by Howard Hinnant · 14 years ago
  54. 767ae2b Contemplating this <atomic> reorganization... by Howard Hinnant · 14 years ago
  55. ed760f4 Wrestling with the slowly dawning realization that <atomic> isn't implementable on any compiler at my disposal... by Howard Hinnant · 14 years ago
  56. d1176e2 [atomics.order] by Howard Hinnant · 14 years ago
  57. 8f73c63 Getting started on <atomic> by Howard Hinnant · 14 years ago
  58. d05c6e6 Bugzilla 8231 by Howard Hinnant · 14 years ago
  59. e049cc5 Cleaning up some tuple code. by Howard Hinnant · 14 years ago
  60. ee6ccd0 visibility-decoration sweep completed. by Howard Hinnant · 14 years ago
  61. 8d7a955 visibility-decoration. by Howard Hinnant · 14 years ago
  62. 28c97e6 visibility-decoration. by Howard Hinnant · 14 years ago
  63. aef07cb visibility-decoration. by Howard Hinnant · 14 years ago
  64. b9af2ea visibility-decoration. by Howard Hinnant · 14 years ago
  65. 8289481 visibility-decoration. by Howard Hinnant · 14 years ago
  66. 68a8e90 visibility-decoration. by Howard Hinnant · 14 years ago
  67. 8c6cbb2 visibility-decoration. by Howard Hinnant · 14 years ago
  68. 42a63a7 visibility-decoration. by Howard Hinnant · 14 years ago
  69. 422a53f visibility-decoration. by Howard Hinnant · 14 years ago
  70. 333f50d visibility-decoration. by Howard Hinnant · 14 years ago
  71. b0be42b visibility-decoration. by Howard Hinnant · 14 years ago
  72. 99acc50 visibility-decoration. by Howard Hinnant · 14 years ago
  73. c0de2e4 Getting started on a visibility-decoration sweep. by Howard Hinnant · 14 years ago
  74. 3975ebd Tweak clang support for char16_t/char32_t by Howard Hinnant · 14 years ago
  75. 45f5717 Cement ABI on clang for char16_t and char32_t. Also fixed some comments in <iterator>. by Howard Hinnant · 14 years ago
  76. d2a9251 Experimenting with a new forward fomulation (kudos Daniel Kruegler), updated insert iterators to work better with pproxies, and doubled the speed of __next_prime. by Howard Hinnant · 14 years ago
  77. a0f1dc9 Fix another const bug in function. Thanks to Daniel Krugler for finding this and the previous bug. by Howard Hinnant · 14 years ago
  78. fdc5a0f Fix const bug in function by Howard Hinnant · 14 years ago
  79. 36cdf02 I am experimenting with putting visibility-default attributes on all struct/classes in libc++. This checkin decorates only basic_string and vector as an experiment, and for review by those in this audience that might know more about visibilty than I do. If I get no negative feedback on this procedure I will begin to decorate the entire library in this way. by Howard Hinnant · 14 years ago
  80. cb2deb2 Yonggang Luo fixed gcc version checking for type_traits support. by Howard Hinnant · 14 years ago
  81. 745d473 Hooked the following up to clang: is_class, is_enum, has_nothrow_copy_assign, has_trivial_destructor, has_virtual_destructor, is_pod. Implemented has_copy_assign. by Howard Hinnant · 14 years ago
  82. 99ad765 has_trivial_copy_assign hooked up to clang (without workarounds). Filed http://llvm.org/bugs/show_bug.cgi?id=8109 to take care of several types which don't work yet. If there is some reason we don't want to handle these types in the compiler, I can handle most of them in the library. by Howard Hinnant · 14 years ago
  83. 954b366 Made a stab at has_copy_constructor. Got it mostly working for g++-4.0, but only works for scalar types on clang. Ultimately this needs a compiler-supported is_constructible which clang is missing, and won't be able to use until it gets variadic templates. by Howard Hinnant · 14 years ago
  84. aad0db3 has_nothrow_copy_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8107 to take care of several types which don't work yet. If there is some reason we don't want to handle these types in the compiler, I can handle most of them in the library. by Howard Hinnant · 14 years ago
  85. 87eea6d has_trivial_copy_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8105 to take care of void, arrays of incomplete bounds and complete bounds which don't work yet. If there is some reason we don't want to handle these types in the compiler, I can handle them in the library. by Howard Hinnant · 14 years ago
  86. bb73d76 Made a stab at has_default_constructor. Got it mostly working for g++-4.0, but only works for scalar types on clang. Ultimately this needs a compiler-supported is_constructible which clang is missing, and won't be able to use until it gets variadic templates. by Howard Hinnant · 14 years ago
  87. 6fd2e09 has_nothrow_default_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8101 to take care of void, arrays of incomplete types, and classes with virtual destructors which don't work yet. If there is some reasons we don't want to handle these types in the compiler, I can handle them in the library. by Howard Hinnant · 14 years ago
  88. 2fd6d25 has_trivial_default_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8097 to take care of void and arrays of incomplete types which don't work yet. If there is some reasons we don't want to handle these types in the compiler, I can handle them in the library. by Howard Hinnant · 14 years ago
  89. 1387038 Working the type_traits area: Hooked up to clang's __is_union. Got has_trivial_copy_assign working. by Howard Hinnant · 14 years ago
  90. bfd5530 Fix whitespace by Howard Hinnant · 14 years ago
  91. 73d21a4 Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature. by Howard Hinnant · 14 years ago
  92. 171a9a7 Configure libc++ to recognize and use inline namespaces for clang. Many, many thanks to Sebastian Redl for implementing it in clang, and to Daniel Dunbar for rattling my cage about it. This is huge for libc++. Thanks to you both\! by Howard Hinnant · 14 years ago
  93. e6e4d01 [futures.atomic_future] and notify_all_at_thread_exit. This completes the header <future> and all of Chapter 30 (for C++0x enabled compilers). by Howard Hinnant · 14 years ago
  94. 99be823 [futures.shared_future] by Howard Hinnant · 14 years ago
  95. 54da338 [futures.task] and [futures.async]. Requires variadics and rvalue-ref support. by Howard Hinnant · 14 years ago
  96. f39daa8 [futures.promise]. Depends on rvalue-ref support to work 100%. by Howard Hinnant · 14 years ago
  97. 47499b1 future continues ... by Howard Hinnant · 14 years ago
  98. a652172 Getting started on <future> by Howard Hinnant · 14 years ago
  99. d510977 Remove tabs by Howard Hinnant · 14 years ago
  100. 324bb03 Fixing whitespace problems by Howard Hinnant · 14 years ago