1. 1d4a1ed Revert "Update aosp/master libcxx rebase to r263688" by Dan Albert · 8 years ago
  2. 566bcb4 Fix most GCC attribute ignored warnings by Eric Fiselier · 8 years ago
  3. 8d5cbd7 Add 'is_callable' and 'is_nothrow_callable' traits and cleanup INVOKE. by Eric Fiselier · 8 years ago
  4. 134ff65 Implement LWG issue 2219 - support reference_wrapper in INVOKE by Eric Fiselier · 8 years ago
  5. b6621c5 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
  6. f1626ad [libcxx] Rewrite C++03 __invoke. by Eric Fiselier · 9 years ago
  7. 5b3a459 Remove almost everything in <__functional_base_03> by Eric Fiselier · 9 years ago
  8. c254b36 Remove constexpr support for std::apply because it introduces regressions. by Eric Fiselier · 9 years ago
  9. 13858ee [libcxx] Add <experimental/tuple> header for LFTS. by Eric Fiselier · 9 years ago
  10. 59ac38c Add trailing return types (and noexcept specifications) to the 'diamond operators'. Fixes PR#22600. by Marshall Clow · 9 years ago
  11. c3231d2 [libcxx] Fix PR 22468 - std::function<void()> does not accept non-void-returning functions by Eric Fiselier · 9 years ago
  12. 0ea7f8c Rename several internal templates to get rid of ___ (triple underscores) or worse, four. No functionality change. by Marshall Clow · 11 years ago
  13. 9738caf Implement n3789; constexpr support in named function objects by Marshall Clow · 11 years ago
  14. 599e60d Implement uses-allocator construction by Marshall Clow · 11 years ago
  15. 4a0a981 First half of support for N3657; heterogenous lookups for set/multiset by Marshall Clow · 11 years ago
  16. 0f678bd 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
  17. a4e87ab 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
  18. a709c82 Revert r187927. by Arnold Schwaighofer · 11 years ago
  19. d8bfe7b Zhihao Yuan: Replace operator& with addressof in reference_wrapper constructor. by Howard Hinnant · 11 years ago
  20. ff46409 Implement N3421; comparison predicates<void> by Marshall Clow · 11 years ago
  21. ecc9742 Constrain __invoke functions more accurately. This fixes http://llvm.org/bugs/show_bug.cgi?id=15861 . by Howard Hinnant · 11 years ago
  22. 83eade6 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 · 11 years ago
  23. 9c0df14 Rename uses of _ and __ because these are getting stepped on by macros from other system code. by Howard Hinnant · 12 years ago
  24. 3fadda3 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 · 12 years ago
  25. ec3773c Quash a whole bunch of warnings by Howard Hinnant · 13 years ago
  26. 9996844 Further macro protection by replacing _[A-Z] with _[A-Z]p by Howard Hinnant · 13 years ago
  27. 08e1747 Windows support by Ruben Van Boxem. by Howard Hinnant · 13 years ago
  28. 0949eed _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 13 years ago
  29. 603d2c0 noexcept for <functional>. by Howard Hinnant · 13 years ago
  30. 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
  31. 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
  32. 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
  33. b64f8b0 license change by Howard Hinnant · 14 years ago
  34. 99acc50 visibility-decoration. by Howard Hinnant · 14 years ago
  35. fdc5a0f Fix const bug in function by Howard Hinnant · 14 years ago
  36. 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 · 14 years ago
  37. 324bb03 Fixing whitespace problems by Howard Hinnant · 14 years ago
  38. f5256e1 Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 14 years ago
  39. bc8d3f9 libcxx initial import by Howard Hinnant · 14 years ago