1. 57cff29 I had a giant misunderstanding of what 'synchronizes with' meant in [futures.async]/p5. This invalidated the current design of async in <future>. This is a new design, based on my new understanding, which has been confirmed on the lwg mailing list. The summary is that ~future() (and ~shared_future()) will block when they are created from within async, and the thread hasn't finished yet. As part of this work I created two new type traits: __invokable<F, Args...>::value and __invoke_of<F, Args...>::type. These are what result_of<F(Args...)> wanted to be when it grew up, but never will be. __invoke_of is carefully crafted so that it can serve as its own enable_if (type doesn't exist if the signature isn't invokable). All of this work is C++11 only. by Howard Hinnant · 13 years ago
  2. 3dd965b This commit was accidental. Reverting. by Howard Hinnant · 13 years ago
  3. 932209b A bunch of future tests got invalidated with the latest updates to thread. Fixed the tests. by Howard Hinnant · 13 years ago
  4. fead2e2 Fix ambiguity in operator== of scoped_allocator_adaptor. by Howard Hinnant · 13 years ago
  5. 6b9826b Fixed bug in recently introduced bind move constructor by Howard Hinnant · 13 years ago
  6. 6cbf9f9 Fix and beef up test bug for move_if_noexcept by Howard Hinnant · 13 years ago
  7. 97ecd64 Clean up a bunch of warnings in the tests, 3 of which actually turned out to be test bugs. by Howard Hinnant · 13 years ago
  8. ad935d5 Brought call_once variadic call up to current spec, which allows move-only functors and move-only arguments, but disallows functors with non-const lvalue reference parameters. by Howard Hinnant · 13 years ago
  9. 656bdc3 Brought thread variadic constructor up to current spec, which allows move-only functors and move-only arguments, but disallows functors with non-const lvalue reference parameters. by Howard Hinnant · 13 years ago
  10. ed22f56 Supply missing std::qualifier to call. by Howard Hinnant · 13 years ago
  11. 941138f Spit 5th bullet __invoke into function pointers and everything else because result_of doesn't deal with function pointers. by Howard Hinnant · 13 years ago
  12. 496934a Supply missing move ctor in __bind_r, though this one will eventually be defaulted by Howard Hinnant · 13 years ago
  13. 37c53b6 Redesign of result_of to handle reference-qualified member functions by Howard Hinnant · 13 years ago
  14. 5ec7f5a Fix type-o found by Justin Hibbits by Howard Hinnant · 13 years ago
  15. e06b996 Fix type-o found by Justin Hibbits by Howard Hinnant · 13 years ago
  16. f6cc833 Warning suppression in test. by Howard Hinnant · 13 years ago
  17. 783b810 Warning suppression in test. by Howard Hinnant · 13 years ago
  18. a5a0ba8 Warning suppression in test. by Howard Hinnant · 13 years ago
  19. e80c36e Correction to hexfloat hack. by Howard Hinnant · 13 years ago
  20. d515df2 Fix test bug. by Howard Hinnant · 13 years ago
  21. f1151ef Suppress some warings in the tests. by Howard Hinnant · 13 years ago
  22. 2d01bf0 Suppress some warings in the tests. by Howard Hinnant · 13 years ago
  23. 0a11111 http://llvm.org/bugs/show_bug.cgi?id=9854. Also created an emulated hexfloat literal for use in some of the tests. <sigh> And cleaned up some harmless but irritating warnings in the tests. by Howard Hinnant · 13 years ago
  24. 11a58a6 http://llvm.org/bugs/show_bug.cgi?id=9118 by Howard Hinnant · 13 years ago
  25. 6063ec1 A much improved type_traits for C++0x. Not yet done: is_trivially_constructible, is_trivially_assignable and underlying_type. by Howard Hinnant · 13 years ago
  26. 0cfa1f7 CWG 1170 has been fixed for destructors by Howard Hinnant · 13 years ago
  27. 9e604b4 __is_trivially_copyable now supplied by clang by Sean Hunt · 13 years ago
  28. d5c2f25 Corrected misspelling by Howard Hinnant · 13 years ago
  29. 7bbce3c Updated to reflect updated use of existing clang support by Howard Hinnant · 13 years ago
  30. 6b41c60 Corrected some bugs in both memory and the tests. Preparing for being able to turn on support for alias templates. by Howard Hinnant · 13 years ago
  31. 5d37fb3 Redid nothrow traits in terms of non-nothrow traits when noexcept is available by Howard Hinnant · 13 years ago
  32. 3666695 Updated type_traits and the type_traits design doc with recent work done in clang. by Howard Hinnant · 13 years ago
  33. d982028 change RC_BUILDIT to RC_XBS for detecting Apple build environment by Nick Kledzik · 13 years ago
  34. ffadfd4 add support for setjmp/longjmp based exceptions by Nick Kledzik · 13 years ago
  35. c6e08d6 <rdar://problem/9014045> more support for Apple internal build environments by Nick Kledzik · 13 years ago
  36. 469d419 Correction to set of overloaded pair constructors for C++0x by Howard Hinnant · 13 years ago
  37. 7ac6af7 Qualify calls to std::next(), to avoid conflicts with by Douglas Gregor · 13 years ago
  38. e14ea58 http://llvm.org/bugs/show_bug.cgi?id=9765 by Howard Hinnant · 13 years ago
  39. 75f7695 Think-o in poisson_distribution at mean == 10 by Howard Hinnant · 13 years ago
  40. ef3b2e2 Fix bug in Sseq constraints found by Seth Cantrell by Howard Hinnant · 13 years ago
  41. 9dbeff9 http://llvm.org/bugs/show_bug.cgi?id=9672 by Howard Hinnant · 13 years ago
  42. 8c1aa2c Changes to cerrno to protect against the case the ELAST is not defined. by Howard Hinnant · 13 years ago
  43. 506b364 time_get was missing the %F specifier. This change impacts the binary. by Howard Hinnant · 13 years ago
  44. a02851e Chris Jefferson found a missing const (Bugzilla 9632) by Howard Hinnant · 13 years ago
  45. 3e93e96 Corrected tests for http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 13 years ago
  46. b8a03c7 ... And these wonderful tests. by Howard Hinnant · 13 years ago
  47. d615e47 Chris Jefferson submitted this patch to fix http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 13 years ago
  48. 154002b Provide a more readable error message for <atomic> until it is implemented. by Howard Hinnant · 13 years ago
  49. 41fb6e1 Jonathan Sauer found a bug in the way ^ was handled by Howard Hinnant · 13 years ago
  50. 86e78d6 Jonathan Sauer updated is_base_of traits status by Howard Hinnant · 13 years ago
  51. 770a3c5 <rdar://problem/9073695> std::uncaught_exception() becomes true before evaluating the throw-expression rather than after by Nick Kledzik · 13 years ago
  52. d0a2fbf http://llvm.org/bugs/show_bug.cgi?id=9444 by Howard Hinnant · 13 years ago
  53. 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 · 13 years ago
  54. 6e5e7e7 Corrected const-correctness on nullptr type_traits, and beefed up the test for nullptr_t. by Howard Hinnant · 13 years ago
  55. 5885da3 Walter Brown brought to my attention that type_traits was failing to correctly classify nullptr_t by Howard Hinnant · 13 years ago
  56. 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 · 13 years ago
  57. 8dcad97 http://llvm.org/bugs/show_bug.cgi?id=9349 I introduced a bug with the last fix and Ryuta Suzuki has corrected it. And hopefully I committed Ryuta Suzuki's directions correctly this time. by Howard Hinnant · 13 years ago
  58. 542b0f0 http://llvm.org/bugs/show_bug.cgi?id=9349 I have not personally tested this patch. Please let me know if it causes problems. by Howard Hinnant · 13 years ago
  59. fddf722 Chris Jefferson found this bug to pair/tuple introduced by a recent change to the draft that I missed. by Howard Hinnant · 13 years ago
  60. 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 · 13 years ago
  61. 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 · 13 years ago
  62. e7c8da6 http://llvm.org/bugs/show_bug.cgi?id=9326 by Howard Hinnant · 13 years ago
  63. 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 · 13 years ago
  64. 5a245db Jean-Daniel Dupas fixes install directions by Howard Hinnant · 13 years ago
  65. 08774c5 Change install name to libc++.1.dylib by Howard Hinnant · 13 years ago
  66. 6cf5d8c Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris). by Howard Hinnant · 13 years ago
  67. c4cbb5b Update testit to default to clang by Howard Hinnant · 13 years ago
  68. 621ee22 fix stupid type-o by Howard Hinnant · 13 years ago
  69. 31b8e61 Installed __has_feature(is_convertible_to) and __has_feature(is_base_of) by Howard Hinnant · 13 years ago
  70. 47a7cce Missing traits::to_int_type in fstream by Howard Hinnant · 13 years ago
  71. 2529d02 Qualify calls to addressof with std::. Bug 9106 by Howard Hinnant · 13 years ago
  72. 211f0ee Bug 9096 - list::iterator not default constructible by Howard Hinnant · 13 years ago
  73. 80f9180 minor corrections to test, and hook is_base_of up to clang intrinsic by Howard Hinnant · 13 years ago
  74. 9ca45e2 Eliminate extraneous {}; by Douglas Gregor · 13 years ago
  75. 65451f1 Updated getting started directions. by Howard Hinnant · 13 years ago
  76. 30bbc93 updated buildit to work with recent clang updates by Howard Hinnant · 13 years ago
  77. 9a21a01 clang found a missing return statement. by Howard Hinnant · 13 years ago
  78. 99b2f76 Make forward_list splice_after and merge work for lvalue lists by Howard Hinnant · 13 years ago
  79. 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 · 13 years ago
  80. 497ac97 Inline namespaces are always available in Clang. Rely on that without by Douglas Gregor · 13 years ago
  81. aab015a Teach move_iterator that rvalue references cannot bind to non-function by Douglas Gregor · 13 years ago
  82. 9f193f2 Add always_inline to string move constructors by Howard Hinnant · 13 years ago
  83. 5ea2e37 Remove an (incorrect) compiler workaround in the __mu function. The by Douglas Gregor · 13 years ago
  84. 4ff9d35 placeholder test by Howard Hinnant · 14 years ago
  85. 56a85ca tweak for readability (no functionality change) by Howard Hinnant · 14 years ago
  86. 6c66994 An rvalue reference cannot bind to an lvalue, so static_cast the by Douglas Gregor · 14 years ago
  87. f9e1c7e Eliminate the C++0x-only is_convertible testing function that accepts by Douglas Gregor · 14 years ago
  88. f83417b Chandler Carruth changed >> to > > in several places. by Howard Hinnant · 14 years ago
  89. e76496c Teach the Lit configuration to actually use the cxx0x setting when by Chandler Carruth · 14 years ago
  90. 5f5859c Add attribute to inlined member. by Howard Hinnant · 14 years ago
  91. 6fd4b66 Fixing an ambiguity in variadics found by clang. by Howard Hinnant · 14 years ago
  92. ac38bae fix guard by Howard Hinnant · 14 years ago
  93. 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
  94. 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
  95. 93c382b Marshall Clow's fix for Bug 8421. by Howard Hinnant · 14 years ago
  96. 2d72b1e Effort to reduce the number of exported symbols by Howard Hinnant · 14 years ago
  97. e48e366 Reduced copying cost of tuple_cat from quadratic to linear. by Howard Hinnant · 14 years ago
  98. 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
  99. 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
  100. 626916f Add CMake build and fix major Linux blockers. by Michael J. Spencer · 14 years ago