1. 94b5bc4 Fix a corner case that involved calling rethrow_if_nested with a type that had a deleted operator&. Added a test to catch this as well. Thanks to Ville for the heads-up. by Marshall Clow · 9 years ago
  2. 70192a9 [libcxx] Rewrite C++03 __invoke. by Eric Fiselier · 10 years ago
  3. 48cf128 Remove almost everything in <__functional_base_03> by Eric Fiselier · 10 years ago
  4. 445d718 Remove constexpr support for std::apply because it introduces regressions. by Eric Fiselier · 10 years ago
  5. ea10d24 [libcxx] Add <experimental/tuple> header for LFTS. by Eric Fiselier · 10 years ago
  6. a64f2fb Add trailing return types (and noexcept specifications) to the 'diamond operators'. Fixes PR#22600. by Marshall Clow · 10 years ago
  7. 54519a6 [libcxx] Fix PR 22468 - std::function<void()> does not accept non-void-returning functions by Eric Fiselier · 10 years ago
  8. a3e6e2b Rename several internal templates to get rid of ___ (triple underscores) or worse, four. No functionality change. by Marshall Clow · 11 years ago
  9. 3d5134dd Implement n3789; constexpr support in named function objects by Marshall Clow · 12 years ago
  10. 50c003b Implement uses-allocator construction by Marshall Clow · 12 years ago
  11. 25d3402 First half of support for N3657; heterogenous lookups for set/multiset by Marshall Clow · 12 years ago
  12. f0544c2 Nico Rieck: this patch series fixes visibility issues on Windows as explained in <http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-August/031214.html>. by Howard Hinnant · 12 years ago
  13. 8c97420 My previous reorganization of addressof broke -std=c++03. Thanks much to Arnold Schwaighofer for catching this. This patch also catches a few more missing addressof in <future>, thanks go to Zhihao Yuan for catching these. by Howard Hinnant · 12 years ago
  14. 5331e3a Revert r187927. by Arnold Schwaighofer · 12 years ago
  15. 9027f5e Zhihao Yuan: Replace operator& with addressof in reference_wrapper constructor. by Howard Hinnant · 12 years ago
  16. 83c08b4 Implement N3421; comparison predicates<void> by Marshall Clow · 12 years ago
  17. 866ed94 Constrain __invoke functions more accurately. This fixes http://llvm.org/bugs/show_bug.cgi?id=15861 . by Howard Hinnant · 12 years ago
  18. 6e41256 No functionality change at this time. I've split _LIBCPP_VISIBLE up into two flags: _LIBCPP_TYPE_VIS and _LIBCPP_FUNC_VIS. This is in preparation for taking advantage of clang's new __type_visibility__ attribute. by Howard Hinnant · 12 years ago
  19. 54d333a Rename uses of _ and __ because these are getting stepped on by macros from other system code. by Howard Hinnant · 13 years ago
  20. 67f3964 Modernize relational operators for shared_ptr and unique_ptr. This includes adding support for nullptr, and using less<T*>. Fixes http://llvm.org/bugs/show_bug.cgi?id=12056. by Howard Hinnant · 13 years ago
  21. c206366 Quash a whole bunch of warnings by Howard Hinnant · 14 years ago
  22. c003db1 Further macro protection by replacing _[A-Z] with _[A-Z]p by Howard Hinnant · 14 years ago
  23. 073458b Windows support by Ruben Van Boxem. by Howard Hinnant · 14 years ago
  24. ce48a11 _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 14 years ago
  25. 6a07d6f noexcept for <functional>. by Howard Hinnant · 14 years ago
  26. 6282a4a1 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 · 14 years ago
  27. ec0810e 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 · 14 years ago
  28. 23fdcd7 Spit 5th bullet __invoke into function pointers and everything else because result_of doesn't deal with function pointers. by Howard Hinnant · 14 years ago
  29. 412dbeb license change by Howard Hinnant · 15 years ago
  30. 43d9923 visibility-decoration. by Howard Hinnant · 15 years ago
  31. 42daac4 Fix const bug in function by Howard Hinnant · 15 years ago
  32. 7609c9b 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
  33. b3371f6 Fixing whitespace problems by Howard Hinnant · 15 years ago
  34. 5b08a8a Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 15 years ago
  35. 3e51952 libcxx initial import by Howard Hinnant · 15 years ago