index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libcxx
/
include
/
tuple
Commit message (
Expand
)
Author
Age
Files
Lines
*
PR43764: Qualify a couple of calls to forward_as_tuple to be ADL-resilient.
David Blaikie
2019-10-28
1
-11
/
+13
*
Refactor default constructor SFINAE in pair and tuple.
Eric Fiselier
2019-09-30
1
-28
/
+17
*
[libc++] Take 2: Implement LWG 3158
Louis Dionne
2019-09-27
1
-13
/
+29
*
[libc++] Take 2: Implement LWG 2510
Louis Dionne
2019-09-26
1
-8
/
+26
*
Revert r372777: [libc++] Implement LWG 2510 and its follow-ups
Ilya Biryukov
2019-09-25
1
-46
/
+12
*
[libc++] Implement LWG 3158
Louis Dionne
2019-09-24
1
-13
/
+29
*
[libc++] Implement LWG 2510
Louis Dionne
2019-09-24
1
-8
/
+26
*
[libc++] Implement CTAD for std::tuple
Louis Dionne
2019-08-12
1
-7
/
+21
*
[NFC][libc++] Add missing EXPLICIT to pair and tuple synopsis
Louis Dionne
2019-07-22
1
-12
/
+12
*
Fix non-conformance it `std::tuple`.
Eric Fiselier
2019-07-12
1
-20
/
+31
*
Fix tuple's conditionally explicit constructors for very weird user
Eric Fiselier
2019-07-03
1
-1
/
+10
*
Apply new meta-programming traits throughout the library.
Eric Fiselier
2019-06-23
1
-27
/
+25
*
Apply [[nodebug]] to typedefs throughout the STL.
Eric Fiselier
2019-06-12
1
-11
/
+11
*
[libcxx] Make std::tuple<> trivially constructible
Louis Dionne
2019-06-11
1
-1
/
+1
*
Fix return type of std::tuple_cat.
Eric Fiselier
2019-04-26
1
-2
/
+2
*
[libc++] Declare std::tuple_element as struct instead of class
Louis Dionne
2019-04-01
1
-2
/
+2
*
Add static_asserts to tuple's comparison operators to enforce the requirement...
Marshall Clow
2019-02-07
1
-0
/
+2
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
Change from a to a . Fixes PR#39871.
Marshall Clow
2019-01-11
1
-2
/
+2
*
[libcxx] Implement P0318: unwrap_ref_decay and unwrap_reference
Louis Dionne
2018-12-03
1
-20
/
+2
*
[NFC] Fix typo in <tuple>
Louis Dionne
2018-11-12
1
-1
/
+1
*
Implement the infrastructure for feature-test macros. Very few actual feature...
Marshall Clow
2018-09-12
1
-0
/
+1
*
Implement P0777: Treating unnecessay decay
Marshall Clow
2018-02-06
1
-4
/
+4
*
Fix missing return in __tuple_leaf::__can_bind_reference when __reference_bin...
Eric Fiselier
2018-01-24
1
-0
/
+2
*
[libc++] Fix PR20855 -- libc++ incorrectly diagnoses illegal reference bindin...
Eric Fiselier
2018-01-24
1
-14
/
+7
*
Implement most of P0607: Inline Variables for the Standard Library. This invo...
Marshall Clow
2018-01-02
1
-4
/
+4
*
workaround PR 28385 in __find_exactly_one_checked
Casey Carter
2017-12-12
1
-3
/
+3
*
Add C++17 explicit deduction guides to std::pair.
Eric Fiselier
2017-10-04
1
-1
/
+1
*
Add tests for class template deduction on std::tuple.
Eric Fiselier
2017-06-08
1
-0
/
+10
*
Rename unreserved names in tuple
Eric Fiselier
2017-06-01
1
-40
/
+40
*
Cleanup remaining usages of _LIBCPP_HAS_NO_<c++11-feature> in tuple and utility
Eric Fiselier
2017-04-19
1
-5
/
+3
*
Implement LWG 2773 - std::ignore should be constexpr.
Eric Fiselier
2017-02-06
1
-3
/
+5
*
Fix inconsistency in tuple's SFINAE. Patch from Andrey Khalyavin"
Eric Fiselier
2017-02-04
1
-1
/
+1
*
Fix std::tuples EBO when targeting the MSVC ABI.
Eric Fiselier
2017-01-16
1
-1
/
+1
*
[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS
Eric Fiselier
2017-01-04
1
-3
/
+3
*
Re-implement LWG 2770 - Fix tuple_size with structured bindings.
Eric Fiselier
2017-01-02
1
-1
/
+1
*
Revert r289727 due to PR31384
Eric Fiselier
2016-12-15
1
-40
/
+23
*
[libcxx] Fix tuple construction/assignment from types derived from tuple/pair...
Eric Fiselier
2016-12-14
1
-23
/
+40
*
Fix PR27374 - Remove the implicit reduced-arity-extension in tuple.
Eric Fiselier
2016-12-08
1
-3
/
+20
*
Implement LWG 2770 - Make tuple_size<T> defined for all T
Eric Fiselier
2016-11-13
1
-1
/
+1
*
Fix PR30979 - tuple<move_only> is constructible from move_only const&
Eric Fiselier
2016-11-13
1
-4
/
+4
*
Implement the std::pair parts of "Improving pair and tuple". Completes N4387.
Eric Fiselier
2016-07-25
1
-44
/
+10
*
Recommit r276548 - Make pair/tuples assignment operators SFINAE properly.
Eric Fiselier
2016-07-25
1
-0
/
+22
*
Revert r276548 - Make pair/tuples assignment operators SFINAE properly.
Eric Fiselier
2016-07-25
1
-22
/
+0
*
Make pair/tuples assignment operators SFINAE properly.
Eric Fiselier
2016-07-24
1
-0
/
+22
*
Add tests for reference binding assertions in std::tuple.
Eric Fiselier
2016-07-20
1
-36
/
+20
*
Implement C++17 tuple bits. Including apply and make_from_tuple.
Eric Fiselier
2016-07-18
1
-1
/
+53
*
Handle std::get<T>(...) for std::tuple<>
Eric Fiselier
2016-07-02
1
-0
/
+5
*
Rewrite std::get<Type>(...) helper using constexpr functions.
Eric Fiselier
2016-07-02
1
-28
/
+28
*
Flatten tuple_constructible, tuple_convertible and tuple_assignable.
Eric Fiselier
2016-07-01
1
-5
/
+0
[next]