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
/
experimental
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Remove more of the std::experimental bits that are now in std::. All the _v t...
Marshall Clow
2018-02-06
5
-616
/
+4
*
Remove <experimental/string_view>; use <string_view> instead. See https://lib...
Marshall Clow
2018-02-05
1
-808
/
+1
*
Implement LWG 3014 - Fix more noexcept issues in filesystem.
Eric Fiselier
2018-02-04
1
-8
/
+8
*
Implement LWG2989: path's streaming operators allow everything under the sun.
Eric Fiselier
2018-02-04
1
-35
/
+37
*
Remove std::experimental::sample; use std::sample instead. See https://libcxx...
Marshall Clow
2018-02-01
1
-15
/
+2
*
Remove <experimental/numeric>; use <numeric> instead. See https://libcxx.llvm...
Marshall Clow
2018-02-01
1
-109
/
+1
*
Remove <experimental/any>; use <any> instead. See https://libcxx.llvm.org/TS_...
Marshall Clow
2018-02-01
1
-582
/
+1
*
Remove <experimental/optional>; use <optional> instead. See https://libcxx.ll...
Marshall Clow
2018-02-01
1
-912
/
+1
*
More of P0600 - '[[nodiscard]] in the Library' mark empty() as nodiscard in f...
Marshall Clow
2017-11-16
1
-1
/
+2
*
Rename identifiers named `__output`
Alexander Richardson
2017-11-14
2
-7
/
+7
*
Implement LWG 3013 - some filesystem members should not be noexcept.
Eric Fiselier
2017-10-30
1
-11
/
+11
*
any: Add availability for experimental::bad_any_cast
Duncan P. N. Exon Smith
2017-06-18
1
-4
/
+5
*
Allow coroutine_handle<const T> to support creation from const references to ...
Eric Fiselier
2017-06-16
1
-2
/
+4
*
[Libc++] Use #pragma push_macro/pop_macro to better handle min/max on Windows
Eric Fiselier
2017-05-31
7
-17
/
+50
*
Fix <experimental/coroutine> in C++03
Eric Fiselier
2017-05-29
1
-2
/
+2
*
[coroutines] Make coroutine_handle<T>::from_address ill-formed for everything...
Eric Fiselier
2017-05-29
1
-2
/
+26
*
Fix coroutine test failures caused by API misusages.
Eric Fiselier
2017-05-29
1
-0
/
+9
*
Fix multiple bugs in coroutine tests.
Eric Fiselier
2017-05-29
1
-0
/
+3
*
Get <experimental/coroutine> working in C++03.
Eric Fiselier
2017-05-26
1
-33
/
+37
*
Guard <experimental/coroutine> against older Clang versions.
Eric Fiselier
2017-05-26
1
-5
/
+5
*
Re-add <experimental/coroutine> to the module map.
Eric Fiselier
2017-05-25
1
-3
/
+3
*
Update more coroutine_handle signatures to reflect N4663.
Eric Fiselier
2017-05-25
1
-3
/
+3
*
Update coroutine_handle<P>::promise to reflect N4663.
Eric Fiselier
2017-05-25
1
-8
/
+2
*
Add <experimental/coroutine>
Eric Fiselier
2017-05-25
2
-0
/
+267
*
Fix GCC 7 test failures.
Eric Fiselier
2017-05-09
1
-6
/
+7
*
Add markup for libc++ dylib availability
Mehdi Amini
2017-05-04
2
-4
/
+7
*
Diagnose when reverse_iterator is used on path::iterator.
Eric Fiselier
2017-04-13
1
-10
/
+2
*
Work around recent -Wshadow changes in Clang
Eric Fiselier
2017-04-04
1
-0
/
+11
*
Implement LWG 2787 - [file_status.cons] is inconsistent
Eric Fiselier
2017-03-06
1
-2
/
+4
*
remove max_size() extension from polymorphic_allocator. It is unneeded
Eric Fiselier
2017-03-02
1
-6
/
+6
*
Make lcm/gcd work better in edge cases. Fixes a UBSAN failure.
Marshall Clow
2017-02-10
1
-11
/
+16
*
Restore the _NOEXCEPT on the dtor of bad_optional_access. Destructors are noe...
Marshall Clow
2017-02-05
1
-1
/
+1
*
Change the base class of std::bad_optional_access. This is a (subtle) ABI ch...
Marshall Clow
2017-02-05
1
-1
/
+1
*
experimental: remove some extraneous _LIBCPP_FUNC_VIS
Saleem Abdulrasool
2017-01-30
1
-14
/
+13
*
experimental: tolerate the existence of a `__deref` macro
Saleem Abdulrasool
2017-01-30
1
-6
/
+9
*
Implement LWG2733: [fund.ts.v2] gcd / lcm and bool. We already did tbis for ...
Marshall Clow
2017-01-24
1
-0
/
+4
*
Fix filesystem::path assignment from {}
Eric Fiselier
2017-01-18
1
-0
/
+1
*
Revert "Rework fix for PR19460 - Use explicit bool as an extension instead."
Eric Fiselier
2017-01-13
1
-6
/
+1
*
Replace identifiers called `__out` because Windows.h #defines it.
Eric Fiselier
2017-01-07
2
-7
/
+7
*
[libc++] Tolerate presence of __deallocate macro
Eric Fiselier
2017-01-07
1
-8
/
+5
*
[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS
Eric Fiselier
2017-01-04
7
-15
/
+15
*
Rework fix for PR19460 - Use explicit bool as an extension instead.
Eric Fiselier
2017-01-02
1
-1
/
+6
*
Fix unused parameters and variables
Eric Fiselier
2016-12-23
2
-4
/
+8
*
Implement conjuntion/disjuntion/negation for LFTS v2. Same code and tests for...
Marshall Clow
2016-11-26
1
-0
/
+18
*
Implement the 'detection idiom' from LFTS v2
Marshall Clow
2016-11-26
1
-0
/
+85
*
Optimize filesystem::path by providing weaker exception guarantees.
Eric Fiselier
2016-10-31
1
-2
/
+12
*
Improve performance of constructing filesystem::path from strings.
Eric Fiselier
2016-10-30
1
-3
/
+4
*
Rewrite std::filesystem::path iterators and parser
Eric Fiselier
2016-10-30
1
-6
/
+19
*
Fix use of non-constexpr C++14 addressof
Eric Fiselier
2016-10-16
1
-1
/
+1
*
Update status for std::optional LWG issues and fix an optional SFINAE bug
Eric Fiselier
2016-10-16
1
-0
/
+4
[prev]
[next]