1. f9b6fd2 [libc++] Support immovable return types in std::function. by Arthur O'Dwyer · 4 years ago
  2. 7b00e9f [libc++] [P1065] Constexpr invoke, reference_wrapper, mem_fn, not_fn, default_searcher. by Arthur O'Dwyer · 4 years, 1 month ago
  3. 3c8e31e [libc++] ADL-proof <functional> by adding _VSTD:: qualification on calls. by Arthur O'Dwyer · 4 years, 1 month ago
  4. e442f38 [libc++] Fix unintended ADL inside ref(reference_wrapper<T>) and cref(reference_wrapper<T>) by Logan Smith · 5 years ago
  5. e16f2cb [libc++] Take 2: Implement LWG 2510 by Louis Dionne · 5 years ago
  6. a3d337a Revert r372777: [libc++] Implement LWG 2510 and its follow-ups by Ilya Biryukov · 5 years ago
  7. 95411dd [libc++] Implement LWG 2510 by Louis Dionne · 5 years ago
  8. 14d4869 Apply [[nodebug]] to typedefs throughout the STL. by Eric Fiselier · 6 years ago
  9. 57b08b0 Update more file headers across all of the LLVM projects in the monorepo by Chandler Carruth · 6 years ago
  10. 9b3222f [libc++] Make sure we can build libc++ with -fvisibility=hidden by Louis Dionne · 6 years ago
  11. ea5cd3b [libc++] Add deprecated attributes to many deprecated components by Louis Dionne · 6 years ago
  12. c8e84ff [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY by Louis Dionne · 6 years ago
  13. cb5b004 Remove unused code from __functional_base. NFC. by Eric Fiselier · 7 years ago
  14. a911f39 Un-inline a few more variables that are exported from the dylib. by Marshall Clow · 7 years ago
  15. 40a01d5 Implement most of P0607: Inline Variables for the Standard Library. This involved marking a lot of variables as inline (but only for C++17 and later). by Marshall Clow · 7 years ago
  16. b707e7f Fix bug 33389 - __is_transparent check requires too much by Marshall Clow · 8 years ago
  17. 7e23afc Cleanup remaining usages of _LIBCPP_HAS_NO_<c++11-feature> in the functional library by Eric Fiselier · 8 years ago
  18. f912759 Implement P0513R0 - "Poisoning the Hash" by Eric Fiselier · 8 years ago
  19. 8f56ded Replace _LIBCPP_HAS_NO_DELETED_FUNCTIONS with _LIBCPP_CXX03_LANG by Eric Fiselier · 8 years ago
  20. e2f2d1ed [NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS by Eric Fiselier · 8 years ago
  21. 4ffd08c [libcxx] Fix PR24075, PR23841 - Add scoped_allocator_adaptor::construct(pair<T, U>*, ...) overloads. by Eric Fiselier · 8 years ago
  22. a48055c Add missing _v traits. is_bind_expression_v, is_placeholder_v and uses_allocator_v by Marshall Clow · 8 years ago
  23. 89dd1dd Fix most GCC attribute ignored warnings by Eric Fiselier · 9 years ago
  24. 840fa74 Add 'is_callable' and 'is_nothrow_callable' traits and cleanup INVOKE. by Eric Fiselier · 9 years ago
  25. 2152fd7 Implement LWG issue 2219 - support reference_wrapper in INVOKE by Eric Fiselier · 9 years ago
  26. 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
  27. 70192a9 [libcxx] Rewrite C++03 __invoke. by Eric Fiselier · 9 years ago
  28. 48cf128 Remove almost everything in <__functional_base_03> by Eric Fiselier · 9 years ago
  29. 445d718 Remove constexpr support for std::apply because it introduces regressions. by Eric Fiselier · 10 years ago
  30. ea10d24 [libcxx] Add <experimental/tuple> header for LFTS. by Eric Fiselier · 10 years ago
  31. a64f2fb Add trailing return types (and noexcept specifications) to the 'diamond operators'. Fixes PR#22600. by Marshall Clow · 10 years ago
  32. 54519a6 [libcxx] Fix PR 22468 - std::function<void()> does not accept non-void-returning functions by Eric Fiselier · 10 years ago
  33. a3e6e2b Rename several internal templates to get rid of ___ (triple underscores) or worse, four. No functionality change. by Marshall Clow · 11 years ago
  34. 3d5134dd Implement n3789; constexpr support in named function objects by Marshall Clow · 11 years ago
  35. 50c003b Implement uses-allocator construction by Marshall Clow · 11 years ago
  36. 25d3402 First half of support for N3657; heterogenous lookups for set/multiset by Marshall Clow · 11 years ago
  37. 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 · 11 years ago
  38. 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 · 11 years ago
  39. 5331e3a Revert r187927. by Arnold Schwaighofer · 11 years ago
  40. 9027f5e Zhihao Yuan: Replace operator& with addressof in reference_wrapper constructor. by Howard Hinnant · 11 years ago
  41. 83c08b4 Implement N3421; comparison predicates<void> by Marshall Clow · 11 years ago
  42. 866ed94 Constrain __invoke functions more accurately. This fixes http://llvm.org/bugs/show_bug.cgi?id=15861 . by Howard Hinnant · 12 years ago
  43. 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
  44. 54d333a Rename uses of _ and __ because these are getting stepped on by macros from other system code. by Howard Hinnant · 12 years ago
  45. 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
  46. c206366 Quash a whole bunch of warnings by Howard Hinnant · 13 years ago
  47. c003db1 Further macro protection by replacing _[A-Z] with _[A-Z]p by Howard Hinnant · 13 years ago
  48. 073458b Windows support by Ruben Van Boxem. by Howard Hinnant · 13 years ago
  49. ce48a11 _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 14 years ago
  50. 6a07d6f noexcept for <functional>. by Howard Hinnant · 14 years ago
  51. 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
  52. 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
  53. 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
  54. 412dbeb license change by Howard Hinnant · 14 years ago
  55. 43d9923 visibility-decoration. by Howard Hinnant · 14 years ago
  56. 42daac4 Fix const bug in function by Howard Hinnant · 14 years ago
  57. 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 · 14 years ago
  58. b3371f6 Fixing whitespace problems by Howard Hinnant · 14 years ago
  59. 5b08a8a Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 15 years ago
  60. 3e51952 libcxx initial import by Howard Hinnant · 15 years ago