- 171ed21 [libcxx] Avoid spurious construction of valarray elements by Mikhail Maltsev · 7 years ago
- 5b1e87e Implement deduction guide for basic_string as described in P0433 by Marshall Clow · 7 years ago
- c0acd34 Fix size and alignment of array<T, 0>. by Eric Fiselier · 7 years ago
- 73660f7 Stop using __strtonum_fallback on Android. by Dan Albert · 7 years ago
- 088e601 Fix PR#31454 - 'basic_string<T>::push_back() crashes if sizeof(T)>sizeof(long long)'. We were mishandling the small-string optimization calculations for very large 'characters'. This may be an ABI change (change the size of) strings of very large 'characters', but since they never worked, I'm not too concerned. by Marshall Clow · 7 years ago
- 6cb35ed [libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default constructible types. by Eric Fiselier · 7 years ago
- 31810d9 Remove more of the std::experimental bits that are now in std::. All the _v type aliases, conjunction/disjunction, apply, etc. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
- 52f9ca2 Implement P0777: Treating unnecessay decay by Marshall Clow · 7 years ago
- f477af5 Fix misleading indentation; replace a couple of NULLs with nullptr. Resolves https://reviews.llvm.org/D42945 ; thanks to Bruce Mitchener for the patch. by Marshall Clow · 7 years ago
- 610fc678 Revert "[libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default constructible types." by Nirav Dave · 7 years ago
- b50d244 Remove <experimental/string_view>; use <string_view> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
- 1317717 Fix initialization of array<const T, 0> with GCC. by Eric Fiselier · 7 years ago
- 4d0f428 Implement LWG 3014 - Fix more noexcept issues in filesystem. by Eric Fiselier · 7 years ago
- 0b47a65 Implement LWG2989: path's streaming operators allow everything under the sun. by Eric Fiselier · 7 years ago
- 122c064 Make array<const T, 0> non-CopyAssignable and make swap and fill ill-formed. by Eric Fiselier · 7 years ago
- f3224ac [libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default constructible types. by Eric Fiselier · 7 years ago
- dfb1351 Make std::get_temporary_buffer respect overaligned types when possible by Richard Smith · 7 years ago
- b21316f Remove std::experimental::sample; use std::sample instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
- 14698bc Remove <experimental/numeric>; use <numeric> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
- f8d223f Remove <experimental/any>; use <any> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
- 95db3d2 Remove <experimental/optional>; use <optional> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 7 years ago
- 75075c6 Add static_asserts to basic_ios and basic_stream_buf to ensure that that the traits match the character type. This is a requirement on the user - now we get consistent failures at compile time instead of incomprehensible error messages or runtime failures. This is also LWG#2994 - not yet adopted. by Marshall Clow · 7 years ago
- 37e4c9b Implement LWG2870: Default value of parameter theta of polar should be dependent by Marshall Clow · 7 years ago
- 27c341d Fix the BinaryPredicate form of std::is_permutation to not rely on operator== by Peter Collingbourne · 7 years ago
- 2b64fcb libcxx: Use vcruntime declarations for typeinfo on Windows. by Peter Collingbourne · 7 years ago
- 6b5c08a libcxx: Move #include_next <math.h> out of header guard in wrapper header. by Peter Collingbourne · 7 years ago
- 8864da5 Fix PR35564 - std::list splice/erase incorrectly throw in debug mode. by Eric Fiselier · 7 years ago
- 8592d0a Fix missing return in __tuple_leaf::__can_bind_reference when __reference_binds_to_temporary added in r323380. by Eric Fiselier · 7 years ago
- cc70488 Implement LWG2783: stack::emplace() and queue::emplace() should return decltype(auto) by Marshall Clow · 7 years ago
- 8286acc [libc++] Fix PR20855 -- libc++ incorrectly diagnoses illegal reference binding in std::tuple. by Eric Fiselier · 7 years ago
- e54a22f [libcxx] Correctly handle invalid regex character class names by Mikhail Maltsev · 7 years ago
- 1cadd88 libcxx: Allow auto-linking to be disabled with a macro. by Peter Collingbourne · 7 years ago
- a11e68f Implement P0463R1: 'Endian just Endian'. Reviewed as https://reviews.llvm.org/D35472 by Marshall Clow · 7 years ago
- 087c5ab libcxx: Rename vasprintf function to __libcpp_vasprintf. by Peter Collingbourne · 7 years ago
- f493c2f libcxx: Provide overloads for basic_filebuf::open() et al that take wchar_t* filenames on Windows. by Peter Collingbourne · 7 years ago
- 59f2389 libcxx: Move Windows threading support into a .cpp file. by Peter Collingbourne · 7 years ago
- 5b12e3b Last batch of P0202 constexpr additions: includes/set_intersection/exchange by Marshall Clow · 7 years ago
- 63be418 Another batch of P0202 constepr algirithms. remove/remove_if/remove_copy/remove_copy_if/reverse_copy, and tests (commented out) for rotate_copy, because that depends on std::copy by Marshall Clow · 7 years ago
- a15161a Still more P0202 constexpr-ifying. This batch is: for_each/for_each_n/lexicographical_compare by Marshall Clow · 7 years ago
- 46ea17e Change a static_assert to check for is_trivial instead of is_pod, as is mandated by P0767. by Marshall Clow · 7 years ago
- 48a4655 More P0202 constexpr work. This commit adds fill/fill_n/generate/generate_n/unique/unique_copy. I removed a specialization of fill_n that recognized when we were dealing with raw pointers and 1 byte trivially-assignable types and did a memset, because the compiler will do that optimization for us. by Marshall Clow · 7 years ago
- a75d613 More P0202 constexpr-ifying in <algorithm>. This commit handles replace/replace_if/replace_copy/replace_copy_if. by Marshall Clow · 7 years ago
- ecd1909 More P0202 constexpr-ifying in <algorithm>. This commit handles 'transform'. by Marshall Clow · 7 years ago
- eb3052c libcxx: Disable CFI in function std::get_temporary_buffer. by Peter Collingbourne · 7 years ago
- 9c2eed8 libcxx: Stop using private MSVC macros in the exception implementation. by Peter Collingbourne · 7 years ago
- d608220 More constexpr algorithms from P0202. search/search_n by Marshall Clow · 7 years ago
- 661dff0 Change an internal table of constants for the poisson distribution from by Marshall Clow · 7 years ago
- 39b8862 More constexpr algorithms from P0202: lower_bound, upper_bound, equal_range, binary_search by Marshall Clow · 7 years ago
- 4cd5965 More constexpr (re P0202) - equal and mismatch by Marshall Clow · 7 years ago
- 0dc8ca7 More constexpr from P0202. count and count_if. Also fix a comment that Morwenn noted. by Marshall Clow · 7 years ago
- 6a1c2ff More P0202 constexpr-ifying. All the find_XXX algorithms in this commit. by Marshall Clow · 7 years ago
- bb8010f partition_point gets the P0202 treatment by Marshall Clow · 7 years ago
- de4b286 More constexpr algorithms from P0202. any_of/all_of/none_of. by Marshall Clow · 7 years ago
- 8d0d825 First part of P0202: Adding constexpr modifiers to functions in <algorithm> and <utility>. This commit is all the is_XXX algorithms. by Marshall Clow · 7 years ago
- 68050ff [libcxx] Make std::basic_istream::get 0-terminate input array in case of error. by Volodymyr Sapsai · 7 years ago
- d09b2ed Implement an _is_allocator type trait for use in deduction guides. by Marshall Clow · 7 years ago
- fa614b8 libcxx: Stop providing a definition of __GLIBC_PREREQ. by Peter Collingbourne · 7 years ago
- 0e3a508 Revert "Make rehash(0) work with ubsan's unsigned-integer-overflow." by Dan Albert · 7 years ago
- 7023194 Make rehash(0) work with ubsan's unsigned-integer-overflow. by Dan Albert · 7 years ago
- 3340633 Add the C++17 extensions to std::search. Include the default searcher, but not the Boyer-Moore or Boyer-Moore-Horspool searcher (yet). BUT put the BM and BMH tests in place, marked to XFAIL. The other searchers will follow soon by Marshall Clow · 7 years ago
- a2ec0c0 Mark the transparent version set::count() as const. Thanks to Ivan Matek for the bug report. by Marshall Clow · 7 years ago
- fbc5de6 Add pre-C++11 is_constructible wrappers for 3 arguments by Dimitry Andric · 7 years ago
- 23bd3c5 Correct mistake in pragma usage for Windows by Saleem Abdulrasool · 7 years ago
- 16eb426 [cmake] Add a config option LIBCXX_HAS_WIN32_THREAD_API for enforcing win32 threads by Martin Storsjo · 7 years ago
- 70a8aae Fix incorrect handling of move-only types in transform_reduce iter iter iter init, and add test. by Billy Robert O'Neal III · 7 years ago
- b68e9c1 Automated trailing whitespace removal by VS Code. by Billy Robert O'Neal III · 7 years ago
- ac3c89d Update version to 7.0.0svn: cmake, include files and docs by Hans Wennborg · 7 years ago
- 73d6c99 Implement p0258r2: has_unique_object_representations by Marshall Clow · 7 years ago
- 97adf8a One more (should be) inline variable that is defined in the dylib by Marshall Clow · 7 years ago
- 4e49857 Un-inline a few more variables that are exported from the dylib. by Marshall Clow · 7 years ago
- 136dc56 Temporarily revert the inlining of 'piecewise_construct' because it is exported from the dylib. by Marshall Clow · 7 years ago
- c1ab13d A couple more inlined variables that I missed the first time by Marshall Clow · 7 years ago
- c58e472 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
- de0811a Fix the definitions of 'reference' and 'pointer' in string_view that no one uses :-). Thanks to K-ballo for the catch. by Marshall Clow · 7 years ago
- 4b54e0f libcxx: Fix for basic_stringbuf::seekoff() after r320604. by Peter Collingbourne · 7 years ago
- 5638e7b [libcxx] Add WebAssembly support by Sam Clegg · 7 years ago
- 4159a36 [libcxx] Fix basic_stringbuf constructor by Zhihao Yuan · 7 years ago
- e445521 [libcxx] P0604, invoke_result and is_invocable by Zhihao Yuan · 7 years ago
- 5f7683b workaround PR 28385 in __find_exactly_one_checked by Casey Carter · 7 years ago
- 4a3242f [libcxx] Define istream_iterator equality comparison operators out-of-line by Roger Ferrer Ibanez · 7 years ago
- a75f2f1 [libc++] Unbreak Apple buildbots by Shoaib Meenai · 7 years ago
- cd9466e [libc++] Create install-stripped targets by Shoaib Meenai · 7 years ago
- c945ad4 Enable auto-linking on Windows by Saleem Abdulrasool · 7 years ago
- 54b78ff [libcxx] Fix intrinsics for MSVC by Shoaib Meenai · 7 years ago
- ab7cb21 Mark a couple of internal routines as 'noexcept' by Marshall Clow · 7 years ago
- df68ebc Land D28253 which fixes PR28929 (which we mistakenly marked as fixed before) by Marshall Clow · 7 years ago
- 8f6293b Implement more of P0600: '[[nodiscard]] in the library' for C++2a by Marshall Clow · 7 years ago
- 46b4ad5 Implement P0457R2: 'String Prefix and Suffix Checking' for c++2a by Marshall Clow · 7 years ago
- aeded2b Fix PR#35948: generate_n does not accept floating point Size arguments. by Marshall Clow · 7 years ago
- 4861f6d [libcxx] Support getentropy as a source of randomness for std::random_device by Petr Hosek · 7 years ago
- 06f2e00 Fix problems with r'890 when building on machines where sizeof(size_t) != sizeof(unsigned long long) and C++03 by Marshall Clow · 7 years ago
- 3a968ef Revert commit removing allocator support from packaged_task. Will investigate further by Marshall Clow · 7 years ago
- 14ff899 Implement LWG#2921 and LWG#2976 - removing allocator support from packaged_task. by Marshall Clow · 7 years ago
- 21edec7 Fix PR#35438 - bitset constructor does not zero unused bits by Marshall Clow · 7 years ago
- 0f25cd9 Fix failure on C++03 bots by Marshall Clow · 7 years ago
- b250294 Implement LWG#2948: unique_ptr does not define operator<< for stream output by Marshall Clow · 7 years ago
- c72032b More of P0600; marking allocation routines as [[nodiscard]] by Marshall Clow · 7 years ago
- 9de8659 Allow to set locale on Windows. by Martin Storsjo · 7 years ago
- 70c7bbd Add [[nodiscard]] to std::async as part of P0600. by Marshall Clow · 7 years ago
- 18a2685 [libcxx] Implement std::to_address for C++20 by Eric Fiselier · 7 years ago