1. 7de4790 Implemented N3194 by Howard Hinnant · 15 years ago
  2. c706565 Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  3. 6051e24 Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  4. adaa626 Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  5. 8771430 Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  6. afff5aa Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  7. 17c3a81 Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  8. 6587dfe Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  9. 73d2f94 Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  10. 091f2ab Update testsuite strucuture to latest draft by Howard Hinnant · 15 years ago
  11. 6689564 N3188 - Revision to N3113: Async Launch Policies (CH 36) by Howard Hinnant · 15 years ago
  12. f8f8521 N3191: C++ Timeout Specification by Howard Hinnant · 15 years ago
  13. f048fe3 N3123 by Howard Hinnant · 15 years ago
  14. 1468b66 N3142. Many of these traits are just placeholders with medium quality emulation; waiting on compiler intrinsics to do it right. by Howard Hinnant · 15 years ago
  15. 995676a LWG 1522 by Howard Hinnant · 15 years ago
  16. 2f6a627 LWG 1339 by Howard Hinnant · 15 years ago
  17. 4776107 LWG 1404 by Howard Hinnant · 15 years ago
  18. 34d6b19 LWG 1325 by Howard Hinnant · 15 years ago
  19. 7b2cb48 LWG 1323 by Howard Hinnant · 15 years ago
  20. cd2254b LWG 1191 by Howard Hinnant · 15 years ago
  21. 86ed8ae LWG 1118 by Howard Hinnant · 15 years ago
  22. b64f8b0 license change by Howard Hinnant · 15 years ago
  23. 726a76f I have reverted all contributions made by Jesse Towner in revision 110724 by Howard Hinnant · 15 years ago
  24. bce9c31 [atomics.types.address] by Howard Hinnant · 15 years ago
  25. 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 · 15 years ago
  26. e738501 atomic_char by Howard Hinnant · 15 years ago
  27. 0d5dff1 Fix two test bugs by Howard Hinnant · 15 years ago
  28. 251aaa1 Relaxing timing test a bit to avoid spurious test failures under load by Howard Hinnant · 15 years ago
  29. 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 · 15 years ago
  30. 79101ae [atomics.flag] completed. Initialization is not working on clang and can't be made to work without defaulted default constructors. by Howard Hinnant · 15 years ago
  31. 767ae2b Contemplating this <atomic> reorganization... by Howard Hinnant · 15 years ago
  32. c260b06 Didn't mean to commit that one by Howard Hinnant · 15 years ago
  33. ed760f4 Wrestling with the slowly dawning realization that <atomic> isn't implementable on any compiler at my disposal... by Howard Hinnant · 15 years ago
  34. 0ce0224 fixing whitespace by Howard Hinnant · 15 years ago
  35. d1176e2 [atomics.order] by Howard Hinnant · 15 years ago
  36. 8f73c63 Getting started on <atomic> by Howard Hinnant · 15 years ago
  37. 611581b tests/lit: Split options into two groups, so we don't get driver warnings about by Daniel Dunbar · 15 years ago
  38. 26a43c2 tests: Remove some stray cleanup code. by Daniel Dunbar · 15 years ago
  39. 7e0c57b tests: Fixup lit config, which got garbled somehow... by Daniel Dunbar · 15 years ago
  40. f5eadcd tests: Sketch a lit config for running libc++ tests; currently expects libc++ to have been installed. by Daniel Dunbar · 15 years ago
  41. e764f0b Updated by-chapter-summary with weekly test results, and fixed up some bad paths in some tests caused by aligning the test suite with N3126. by Howard Hinnant · 15 years ago
  42. 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 · 15 years ago
  43. 2703111 has_nothrow_copy_assign hooked up to clang by Howard Hinnant · 15 years ago
  44. 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 · 15 years ago
  45. 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 · 15 years ago
  46. 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 · 15 years ago
  47. 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 · 15 years ago
  48. 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 · 15 years ago
  49. 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 · 15 years ago
  50. 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 · 15 years ago
  51. 1387038 Working the type_traits area: Hooked up to clang's __is_union. Got has_trivial_copy_assign working. by Howard Hinnant · 15 years ago
  52. 3991b55 sync with N3126 by Howard Hinnant · 15 years ago
  53. a2ccccc sync with N3126 by Howard Hinnant · 15 years ago
  54. 9c2683d sync with N3126 by Howard Hinnant · 15 years ago
  55. e3e488e sync with N3126 by Howard Hinnant · 15 years ago
  56. b02310e sync with N3126 by Howard Hinnant · 15 years ago
  57. bfd5530 Fix whitespace by Howard Hinnant · 15 years ago
  58. 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 · 15 years ago
  59. 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 · 15 years ago
  60. 99be823 [futures.shared_future] by Howard Hinnant · 15 years ago
  61. 54da338 [futures.task] and [futures.async]. Requires variadics and rvalue-ref support. by Howard Hinnant · 15 years ago
  62. 7158e5c [futures.unique_future] by Howard Hinnant · 15 years ago
  63. f39daa8 [futures.promise]. Depends on rvalue-ref support to work 100%. by Howard Hinnant · 15 years ago
  64. a652172 Getting started on <future> by Howard Hinnant · 15 years ago
  65. ef0036c Corrected some int -> char narrowing conversions by Howard Hinnant · 15 years ago
  66. 8e705bb Accidentally changed a data file during the whitespace cleanup by Howard Hinnant · 15 years ago
  67. d510977 Remove tabs by Howard Hinnant · 15 years ago
  68. d2bb032 Fixing whitespace problems by Howard Hinnant · 15 years ago
  69. c52f43e Fixing whitespace problems by Howard Hinnant · 15 years ago
  70. f11ea14 Fixing whitespace problems by Howard Hinnant · 15 years ago
  71. 6e0a1f4 Fixing whitespace problems by Howard Hinnant · 15 years ago
  72. bbd8086 Fixing whitespace problems by Howard Hinnant · 15 years ago
  73. 0e20cae Fixing whitespace problems by Howard Hinnant · 15 years ago
  74. 22a74dc Fixing whitespace problems by Howard Hinnant · 15 years ago
  75. cf6dcc3 Fixing whitespace problems by Howard Hinnant · 15 years ago
  76. 712522c Fixing whitespace problems by Howard Hinnant · 15 years ago
  77. 256813f Fixing whitespace problems by Howard Hinnant · 15 years ago
  78. 74231bf Fixing whitespace problems by Howard Hinnant · 15 years ago
  79. aa20444 Fixing whitespace problems by Howard Hinnant · 15 years ago
  80. 6046ace Fixing whitespace problems by Howard Hinnant · 15 years ago
  81. eb564e7 Fixing whitespace problems by Howard Hinnant · 15 years ago
  82. 92172b8 US 108, N3109 by Howard Hinnant · 15 years ago
  83. a785e4e DE 23 by Howard Hinnant · 15 years ago
  84. 7a2523b US 117 by Howard Hinnant · 15 years ago
  85. 98e5d97 US 122, N3106 by Howard Hinnant · 15 years ago
  86. 7255280 Installed allocator into std::function by Howard Hinnant · 15 years ago
  87. e3263b4 GB 85, GB 87 by Howard Hinnant · 15 years ago
  88. 2794e6c DE 19 by Howard Hinnant · 15 years ago
  89. 3c1ffba US 98, US 99 by Howard Hinnant · 15 years ago
  90. e92c3d7 US 107 by Howard Hinnant · 15 years ago
  91. ba590bd LWG 1278 by Howard Hinnant · 15 years ago
  92. 4a23e1e Updated by-chapter chart with weekly test results. Also did some prototyping on result_of, but if-def'd out the prototyped part (which the LWG may or may not accept) by Howard Hinnant · 15 years ago
  93. a8d7759 [re.alg.replace]. This finishes all of <regex>. That being said, <regex> is exceptionally difficult to thoroughly test. If anyone has the ability to test this, combined with the interest to do so, now would be a good time. :-) by Howard Hinnant · 15 years ago
  94. 262b779 [re.tokiter] by Howard Hinnant · 15 years ago
  95. a712c72 [re.regiter] by Howard Hinnant · 15 years ago
  96. aa78f9c [re.alg.match] by Howard Hinnant · 15 years ago
  97. 27405f9 Everything under [re.results] by Howard Hinnant · 15 years ago
  98. 7026a17 Everything under [re.regex] by Howard Hinnant · 15 years ago
  99. 8784650 Filling out regex tests... by Howard Hinnant · 15 years ago
  100. 0a68a4d Fix conflict with cstring and using namespace std by Howard Hinnant · 15 years ago