1. c7c3891 Update CREDITS.TXT by Howard Hinnant · 13 years ago
  2. c28dbee Move nullptr_t to unversioned namespace: Sean Hunt by Howard Hinnant · 13 years ago
  3. 58cd823 noexcept for <stack>. This completes noexcept for Chapter 23 [containers]. by Howard Hinnant · 13 years ago
  4. 6a09441 noexcept for <queue>. by Howard Hinnant · 13 years ago
  5. 04dae1d noexcept for <unordered_set>. by Howard Hinnant · 13 years ago
  6. 5f2f14c noexcept for <unordered_map>. by Howard Hinnant · 13 years ago
  7. 8b53768 Made more implementation details of [multi]map/set noexcept. by Howard Hinnant · 13 years ago
  8. b2e2a8f noexcept for <set>. Plus a few fixes to noexcept for <map>. by Howard Hinnant · 13 years ago
  9. 7686add noexcept for <map>. by Howard Hinnant · 13 years ago
  10. d1d27a4 noexcept for <vector>. This also includes installing move_if_noexcept() into vector. by Howard Hinnant · 13 years ago
  11. 53f7d4c Bring noexcept for <string> inline with other containers. by Howard Hinnant · 13 years ago
  12. c560727 noexcept for <list>. by Howard Hinnant · 13 years ago
  13. b965fed noexcept for <forward_list>. by Howard Hinnant · 13 years ago
  14. 009b2c4 After sleeping on it I've decided that all special members that can be noexcept, should be declared so. The client has the traits to detect and branch on this information, and it is often an important optimization. Give deque() a noexcept. Add test for deque default constructor and deque destructor. by Howard Hinnant · 13 years ago
  15. 93f2764 Add noexcept tests for deque. by Howard Hinnant · 13 years ago
  16. 18884f4 Second try at getting noexcept on move and swap for deque. I changed std::alloctor to propagate_on_container_move_assignment so as to make deque<T> move assignment noexcept. What we really need is a compile-time switch that says an allocator always compares equal. by Howard Hinnant · 13 years ago
  17. 0a612b0 I've become quite disatsified with the lack of noexcept specifications on container move construction, move assignment operator and swap. Without proper decoration on at least move construction, vectors of containers will have unacceptable performance. Here's the fix for deque. by Howard Hinnant · 13 years ago
  18. 8790cab noexcept for forward_list. by Howard Hinnant · 13 years ago
  19. a12beb3 noexcept for deque. by Howard Hinnant · 13 years ago
  20. aabf287 Experimental support for a meaningful __is_swappable<T>::value. This does not appear to be strictly needed for correct functioning of the library. If it causes any problems, I'd rather pull it sooner rather than later. by Howard Hinnant · 13 years ago
  21. d737382 Turning on cxx_nullptr exposed a latent bug in is_function, causing nullptr to wrongly classify as a function. Fixed. by Howard Hinnant · 13 years ago
  22. 083ba5f I've seen this question enough times to know that it should be fixed: http://stackoverflow.com/questions/6193734/implicit-conversions-with-stdfunction by Howard Hinnant · 13 years ago
  23. f0562af noexcept for <array>. by Howard Hinnant · 13 years ago
  24. 20eda8b Upgrade <ratio> to use template aliases when available. by Howard Hinnant · 13 years ago
  25. c983454 noexcept for Chapter 22 [localization]. by Howard Hinnant · 13 years ago
  26. c26fd80 Add _ATTRIBUTE macro for gcc: Justin Hibbits by Howard Hinnant · 13 years ago
  27. a6119a8 noexcept for Chapter 21 [strings]. by Howard Hinnant · 13 years ago
  28. d5fed03 http://llvm.org/bugs/show_bug.cgi?id=10045 . Please review, I have not tested this on linux. by Howard Hinnant · 13 years ago
  29. ad1a5cc minor documentation update by Howard Hinnant · 13 years ago
  30. 0687adc noexcept for <typeindex>. This completes Chapter 20 [utilities]. by Howard Hinnant · 13 years ago
  31. 0667433 noexcept for <scoped_allocator>. by Howard Hinnant · 13 years ago
  32. 756a176 noexcept for <chrono>. by Howard Hinnant · 13 years ago
  33. 603d2c0 noexcept for <functional>. by Howard Hinnant · 13 years ago
  34. 1694d23 noexcept for <memory>. I've added a few extension noexcept to: allocator_traits<A>::deallocate, allocaate<T>::deallocate, return_temporary_buffer, and default_delete<T>::operator()(T*) const. My rationale was: If a std-dicated noexcept function needs to call another std-defined function, that called function must be noexcept. We're all a little new to noexcept, so things like this are to be expected. Also included fix for broken __is_swappable trait pointed out by Marc Glisse, thanks Marc|. And fixed a test case for is_nothrow_destructible. Destructors are now noexcept by default| by Howard Hinnant · 13 years ago
  35. 10f25d2 noexcept for <bitset>. by Howard Hinnant · 13 years ago
  36. a5e0121 noexcept for <tuple>. And in the process learned that I had done it wrong for pair's swap. I needed to create an __is_nothrow_swappable<T>::value trait that was smart enought to answer false when __is_swappable<T>::value is false. Otherwise one gets compile-time errors when using pair or tuple of non-swappable types, even if you never try to swap the pair or tuple. by Howard Hinnant · 13 years ago
  37. e9b2c2d noexcept for <utility>. This included a little repair on pair, and some noexcept workarounds. by Howard Hinnant · 13 years ago
  38. 1e15fd1 Applied noexcept to everything in [diagnostics] (Chapter 19) by Howard Hinnant · 13 years ago
  39. 19ce6a4 Turn on cxx_alias_templates support by Howard Hinnant · 13 years ago
  40. ed56921 Applied noexcept to everything in [language.support] (Chapter 18) by Howard Hinnant · 13 years ago
  41. 4b7a43d Added [[noreturn]] attribute everywhere it should be by Howard Hinnant · 13 years ago
  42. 8feadca support another Apple build environment by Nick Kledzik · 13 years ago
  43. 1122fec on Darwin re-export C++0x type infos by Nick Kledzik · 13 years ago
  44. 20542c0 http://llvm.org/bugs/show_bug.cgi?id=9399 fixed by Ryuta Suzuki by Howard Hinnant · 13 years ago
  45. ef54251 Fix const correctness bug in bind involving reference_wrapper found by Jonathan Sauer by Howard Hinnant · 13 years ago
  46. e003ce4 __invokable and __invoke_of now check for incomplete types and issue a compile-time diagnostic if they are used with incomplete types for anything except a return type. Note that both arguments *and* parameters are checked for completeness. by Howard Hinnant · 13 years ago
  47. bd89e4b This is a simplified (and superior) implementation of __invoke, __invokable and __invoke_of. It is superior in that __invoke now handles reference qualified member functions whereas the previous implementation did not. And it simply has less infrastructure in its implementation. I'm still learning how to program in C++11 (and probably will be for a long time). This change does not impact the behavior we're seeing in http://llvm.org/bugs/show_bug.cgi?id=9975 by Howard Hinnant · 13 years ago
  48. 0148a83 Simplied bind using __invoke. In the process, found and fixed a couple of bugs. C++11 only. by Howard Hinnant · 13 years ago
  49. 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
  50. 3dd965b This commit was accidental. Reverting. by Howard Hinnant · 13 years ago
  51. 932209b A bunch of future tests got invalidated with the latest updates to thread. Fixed the tests. by Howard Hinnant · 13 years ago
  52. fead2e2 Fix ambiguity in operator== of scoped_allocator_adaptor. by Howard Hinnant · 13 years ago
  53. 6b9826b Fixed bug in recently introduced bind move constructor by Howard Hinnant · 13 years ago
  54. 6cbf9f9 Fix and beef up test bug for move_if_noexcept by Howard Hinnant · 13 years ago
  55. 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
  56. 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
  57. 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
  58. ed22f56 Supply missing std::qualifier to call. by Howard Hinnant · 13 years ago
  59. 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
  60. 496934a Supply missing move ctor in __bind_r, though this one will eventually be defaulted by Howard Hinnant · 13 years ago
  61. 37c53b6 Redesign of result_of to handle reference-qualified member functions by Howard Hinnant · 13 years ago
  62. 5ec7f5a Fix type-o found by Justin Hibbits by Howard Hinnant · 13 years ago
  63. e06b996 Fix type-o found by Justin Hibbits by Howard Hinnant · 13 years ago
  64. f6cc833 Warning suppression in test. by Howard Hinnant · 13 years ago
  65. 783b810 Warning suppression in test. by Howard Hinnant · 13 years ago
  66. a5a0ba8 Warning suppression in test. by Howard Hinnant · 13 years ago
  67. e80c36e Correction to hexfloat hack. by Howard Hinnant · 13 years ago
  68. d515df2 Fix test bug. by Howard Hinnant · 13 years ago
  69. f1151ef Suppress some warings in the tests. by Howard Hinnant · 13 years ago
  70. 2d01bf0 Suppress some warings in the tests. by Howard Hinnant · 13 years ago
  71. 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
  72. 11a58a6 http://llvm.org/bugs/show_bug.cgi?id=9118 by Howard Hinnant · 13 years ago
  73. 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
  74. 0cfa1f7 CWG 1170 has been fixed for destructors by Howard Hinnant · 13 years ago
  75. 9e604b4 __is_trivially_copyable now supplied by clang by Sean Hunt · 13 years ago
  76. d5c2f25 Corrected misspelling by Howard Hinnant · 13 years ago
  77. 7bbce3c Updated to reflect updated use of existing clang support by Howard Hinnant · 13 years ago
  78. 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
  79. 5d37fb3 Redid nothrow traits in terms of non-nothrow traits when noexcept is available by Howard Hinnant · 13 years ago
  80. 3666695 Updated type_traits and the type_traits design doc with recent work done in clang. by Howard Hinnant · 13 years ago
  81. d982028 change RC_BUILDIT to RC_XBS for detecting Apple build environment by Nick Kledzik · 13 years ago
  82. ffadfd4 add support for setjmp/longjmp based exceptions by Nick Kledzik · 13 years ago
  83. c6e08d6 <rdar://problem/9014045> more support for Apple internal build environments by Nick Kledzik · 13 years ago
  84. 469d419 Correction to set of overloaded pair constructors for C++0x by Howard Hinnant · 13 years ago
  85. 7ac6af7 Qualify calls to std::next(), to avoid conflicts with by Douglas Gregor · 13 years ago
  86. e14ea58 http://llvm.org/bugs/show_bug.cgi?id=9765 by Howard Hinnant · 13 years ago
  87. 75f7695 Think-o in poisson_distribution at mean == 10 by Howard Hinnant · 13 years ago
  88. ef3b2e2 Fix bug in Sseq constraints found by Seth Cantrell by Howard Hinnant · 13 years ago
  89. 9dbeff9 http://llvm.org/bugs/show_bug.cgi?id=9672 by Howard Hinnant · 13 years ago
  90. 8c1aa2c Changes to cerrno to protect against the case the ELAST is not defined. by Howard Hinnant · 13 years ago
  91. 506b364 time_get was missing the %F specifier. This change impacts the binary. by Howard Hinnant · 13 years ago
  92. a02851e Chris Jefferson found a missing const (Bugzilla 9632) by Howard Hinnant · 13 years ago
  93. 3e93e96 Corrected tests for http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 13 years ago
  94. b8a03c7 ... And these wonderful tests. by Howard Hinnant · 13 years ago
  95. d615e47 Chris Jefferson submitted this patch to fix http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 13 years ago
  96. 154002b Provide a more readable error message for <atomic> until it is implemented. by Howard Hinnant · 13 years ago
  97. 41fb6e1 Jonathan Sauer found a bug in the way ^ was handled by Howard Hinnant · 13 years ago
  98. 86e78d6 Jonathan Sauer updated is_base_of traits status by Howard Hinnant · 13 years ago
  99. 770a3c5 <rdar://problem/9073695> std::uncaught_exception() becomes true before evaluating the throw-expression rather than after by Nick Kledzik · 13 years ago
  100. d0a2fbf http://llvm.org/bugs/show_bug.cgi?id=9444 by Howard Hinnant · 13 years ago