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
/
future
Commit message (
Expand
)
Author
Age
Files
Lines
*
[libc++] Rework compressed pair constructors.
Eric Fiselier
2019-12-16
1
-2
/
+2
*
[libc++] Hide some functions and types in <future> and <thread> as hidden
Louis Dionne
2019-12-10
1
-6
/
+6
*
Assume __is_final, __is_base_of, and friends.
Eric Fiselier
2019-06-21
1
-4
/
+0
*
[NFC][libcxx] Remove trailing whitespace
Louis Dionne
2019-05-29
1
-5
/
+5
*
Update more file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[libc++] Remove race condition in std::async
Louis Dionne
2018-08-24
1
-12
/
+7
*
Fix use of incorrect _LIBCXX macro (should be _LIBCPP).
Eric Fiselier
2018-07-24
1
-1
/
+1
*
[libc++] Take 2: Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISI...
Louis Dionne
2018-07-11
1
-1
/
+1
*
Revert "[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISI...
Louis Dionne
2018-07-05
1
-1
/
+1
*
[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY
Louis Dionne
2018-07-05
1
-1
/
+1
*
Implement LWG 3039 and 3041 - 'Treating Unnecessary decay'.
Marshall Clow
2018-03-20
1
-4
/
+4
*
Revert commit removing allocator support from packaged_task. Will investigate...
Marshall Clow
2017-11-27
1
-0
/
+34
*
Implement LWG#2921 and LWG#2976 - removing allocator support from packaged_task.
Marshall Clow
2017-11-27
1
-34
/
+0
*
Add [[nodiscard]] to std::async as part of P0600.
Marshall Clow
2017-11-23
1
-1
/
+2
*
Add markup for libc++ dylib availability
Mehdi Amini
2017-05-04
1
-23
/
+27
*
[libc++] Make _LIBCPP_TYPE_VIS export members
Shoaib Meenai
2017-03-02
1
-0
/
+2
*
Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch
Marshall Clow
2017-01-25
1
-1
/
+1
*
Implement LWG2556: Wide contract for future::share()
Marshall Clow
2017-01-24
1
-9
/
+9
*
[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS
Eric Fiselier
2017-01-04
1
-15
/
+15
*
Avoid unused warning in __throw_future_error w/o exceptions enabled
Eric Fiselier
2016-12-24
1
-0
/
+1
*
Implement P0516: 'Clarify That shared_future’s Copy Operations have Wide Co...
Marshall Clow
2016-11-14
1
-3
/
+3
*
Implement P0510 'Make future_error Constructible' adopted in Issaquah
Marshall Clow
2016-11-14
1
-2
/
+4
*
Add an _LIBCPP_NORETURN inline function named __throw_XXX for each exception ...
Marshall Clow
2016-08-25
1
-2
/
+2
*
Cleanup non-standard tests as reported by STL@microsoft.com. NFC.
Eric Fiselier
2016-06-01
1
-3
/
+3
*
Mark LWG issue 2276 as complete. Add _LIBCPP_ASSERTS for it
Eric Fiselier
2016-05-31
1
-0
/
+2
*
Add a couple of _LIBCPP_ASSERT calls. No functional change.
Marshall Clow
2016-05-16
1
-0
/
+2
*
Cleanup: move visibility/linkage attributes to the first declaration.
Evgeniy Stepanov
2015-11-07
1
-9
/
+18
*
[libcxx] Attempt to fix __throw_future_error in C++03
Eric Fiselier
2015-10-02
1
-31
/
+30
*
Make a helper routine __throw_future_error, and encapsulate the #ifdef _LIBCP...
Marshall Clow
2015-09-03
1
-72
/
+43
*
K-ballo pointed out that I missed one of the specializations of packaged_task...
Marshall Clow
2015-06-30
1
-1
/
+1
*
Implement LWG#2407: 'packaged_task(allocator_arg_t, const Allocator&, F&&) sh...
Marshall Clow
2015-06-30
1
-2
/
+2
*
Fix PR23293 - Do not unlock shared state before notifying consumers.
Eric Fiselier
2015-06-12
1
-4
/
+0
*
Remove use of _[A-Z] identifiers and poison them to detect usage
Eric Fiselier
2015-02-05
1
-9
/
+9
*
Add support for "fancy" pointers to promise and packaged_task.
Eric Fiselier
2014-10-23
1
-30
/
+38
*
Address some post-commit review comments on r217261
Jonathan Roelofs
2014-09-05
1
-1
/
+1
*
Allow libc++ to be built on systems without POSIX threads
Jonathan Roelofs
2014-09-05
1
-0
/
+6
*
Fix PR19819
Marshall Clow
2014-04-07
1
-2
/
+2
*
Better inline marking for __does_policy_contain. Thanks to Chongyu Zhu for th...
Marshall Clow
2013-11-03
1
-1
/
+1
*
Mark __does_policy_contain as 'inline'. Thanks to Chongyu Zhu for the catch
Marshall Clow
2013-11-03
1
-1
/
+1
*
Fix LWG Issue 2078. Make std::async(policy,...) try multiple policies until o...
Marshall Clow
2013-11-03
1
-6
/
+18
*
Patch from GM to make more implicit bools explicit since we can't stop MSVC w...
Marshall Clow
2013-10-13
1
-2
/
+2
*
LWG Issue 2097: packaged_task constructors should be constrained
Marshall Clow
2013-10-12
1
-4
/
+36
*
Apply LWG 2021. This is only a documentation change. Also bringing c++1y st...
Howard Hinnant
2013-09-21
1
-2
/
+2
*
Marshall Clow: LWG Issue 2056: future_errc enums start with value 0 (invalid...
Howard Hinnant
2013-09-14
1
-6
/
+6
*
Nico Rieck: this patch series fixes visibility issues on Windows as explaine...
Howard Hinnant
2013-08-12
1
-16
/
+16
*
My previous reorganization of addressof broke -std=c++03. Thanks much to Arn...
Howard Hinnant
2013-08-08
1
-3
/
+3
*
Constrain launch ~ operator to defined bits.
Howard Hinnant
2013-07-02
1
-1
/
+1
*
Add operators to make launch a bitmask type. Searched all of the standard, a...
Howard Hinnant
2013-06-29
1
-0
/
+66
*
No functionality change at this time. I've split _LIBCPP_VISIBLE up into two...
Howard Hinnant
2013-03-06
1
-19
/
+19
*
Donated anonymously: This enables GCC 4.8.0 to build libc++.
Howard Hinnant
2013-01-21
1
-1
/
+1
[next]