- ab008f7 Add option to disable __deallocate #warning by Saleem Abdulrasool · 9 years ago
- 6f4713b Put the status in the right column by Marshall Clow · 9 years ago
- 683272d Mark P0067 as 'postponed', because it will be revised before the next meeting by Marshall Clow · 9 years ago
- 5766391 Don't compute modulus of hash if it is smaller than the bucket count. by Eric Fiselier · 9 years ago
- 51d7e8e Always use the allocator to construct/destruct elements of a deque/vector. Fixes PR#28412. Thanks to Jonathan Wakely for the report. by Marshall Clow · 9 years ago
- 45e9a93 Allow is_swappable to SFINAE on deleted/ambiguous swap functions by Eric Fiselier · 9 years ago
- 4a98c1e Hide some internal symbols for memory resource. by Eric Fiselier · 9 years ago
- faa37d5 Fix typo in #ifdef; leave tests commented out b/c gcc 4.8 harks on them. by Marshall Clow · 9 years ago
- df4a22d Implement LWG685 (which is from C++11!). Fixes PR#28421. Note: this (subtly) changes the return type of operator-(Iter1, Iter2) where Iter1 is a reverse iterator or a move_iterator, and Iter2 is some other move/reverse iterator type. In practice, I believe that almost every time the second param will be const_XXX and this will mean that the return type will be the same as it was before. by Marshall Clow · 9 years ago
- 95a22db [libc++] Check hash before calling __hash_table key_eq function by Kwasi Mensah · 9 years ago
- 8e83446 Revert r274605 due to bot failure: http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-expensive/244/ by Manman Ren · 9 years ago
- 8668189 Fix typo in #ifdef, and re-enable tests now that the green-dragon bots are no more by Marshall Clow · 9 years ago
- 56a7614 Add unordered_map::insert benchmark test and rename file by Eric Fiselier · 9 years ago
- 38af0f8 Improve performance of unordered_set<uint32_t>::find by 45%. Add benchmarks. by Eric Fiselier · 9 years ago
- 990090f Handle std::get<T>(...) for std::tuple<> by Eric Fiselier · 9 years ago
- 6b7a871 Remove workarounds for C++17 inline variable ABI break. It has been fixed in clang. by Eric Fiselier · 9 years ago
- 22c3e76 Rewrite std::get<Type>(...) helper using constexpr functions. by Eric Fiselier · 9 years ago
- 5fb1e0a Cleanup SFINAE in tuple, and add tests for reference assignment by Eric Fiselier · 9 years ago
- cebaf5c Make tuple_constructible and family lazy again. by Eric Fiselier · 9 years ago
- cd20679 Add another workaround for C++17 inline variable ABI breakage. by Eric Fiselier · 9 years ago
- 103f80d Remove accidental change committed in r274403. by Eric Fiselier · 9 years ago
- e8b134c Turn off ASAN's odr-violation diagnostics for now. See PR28391 by Eric Fiselier · 9 years ago
- 1eb8739 Work around ABI break caused by C++17 inline variables. by Eric Fiselier · 9 years ago
- ed33ed8 Flatten tuple_constructible, tuple_convertible and tuple_assignable. by Eric Fiselier · 9 years ago
- 053859f Flatten the tuple_element and __make_tuple_types implementations. by Eric Fiselier · 9 years ago
- a3ccd96 Replace __make_tuple_indices implementation with superior implementation. by Eric Fiselier · 9 years ago
- 1a93312 Fix static assert problem on gcc; remove XFAILs that I put in in r274250 by Marshall Clow · 9 years ago
- 3efb2c9 Fix C++03 build. by Eric Fiselier · 9 years ago
- dd18d90 Mark issues 2550, 2551, 2555, 2685, 2698 as complete. These issues are wording clarifications; no code changes required. by Marshall Clow · 9 years ago
- d94c776 Mark issues 2667, 2669, 2670, 2671, 2673 as complete. These issues are wording clarifications; no code changes required. by Marshall Clow · 9 years ago
- 0b02cf8 Implement LWG#2688: 'clamp misses preconditions and has extraneous condition on result'. We already did this, just added tests by Marshall Clow · 9 years ago
- a0f496b Temporarily XFAIL the incomplete type tests for GCC while I figure out why adding a static_assert in r274235 broken them by Marshall Clow · 9 years ago
- 256814f Implement LWG#2684: 'priority_queue lacking comparator typedef'. We already did this, just added tests by Marshall Clow · 9 years ago
- f0419f1 Implement LWG#2596: 'vector::data() should use addressof' by Marshall Clow · 9 years ago
- ca89450 Implement LWG#2441: 'Exact-width atomic typedefs should be provided' by Marshall Clow · 9 years ago
- 0c99f18 Implement LWG#2436: 'Comparators for associative containers should always be CopyConstructible' by Marshall Clow · 9 years ago
- 3e9545e Update status of already completed Oulu issues. by Eric Fiselier · 9 years ago
- b0ee613 Make futures.overview enum tests more portable. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 0fc5603 Make std::array typedef tests more portable. by Eric Fiselier · 9 years ago
- c848cef Fix ::reference typedef in insert iterators. by Eric Fiselier · 9 years ago
- 8db06d7 Make instreambuf.iterator/types.pass.cpp more portable. by Eric Fiselier · 9 years ago
- 68d0f23 Fix use of terse static assert. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 16715b9 Fix unary_function inheritance assumption. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- eb4c5e9 Fix unreferenced parameter warning. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 3a60979 Avoid applying unary minus to unsigned integers. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 70bf1c2 [libcxx] Fix a bug in strstreambuf::overflow. by Akira Hatanaka · 9 years ago
- 05d5c05 Use WG21.link reflector to get to issues, rather than linking directly by Marshall Clow · 9 years ago
- 01ac037 Updated C++1Z status page with new work from Oulu WG21 meeting by Marshall Clow · 9 years ago
- 871506f Fix bad link for P0006 by Marshall Clow · 9 years ago
- 928a58f Fix UB in uses_alloc_types.hpp by Eric Fiselier · 9 years ago
- 83d7ca9 Implement P0163r0. Add shared_ptr::weak_type. by Eric Fiselier · 9 years ago
- 5781358 Implement p0337r0. Delete operator= for polymorphic_allocator. by Eric Fiselier · 9 years ago
- 715ca51 Implement P0358r1. Fixes for not_fn. by Eric Fiselier · 9 years ago
- c297a25 Fix C++03 failure in enable_shared_from_this test by Eric Fiselier · 9 years ago
- 7838768 Fix PR27115 - enable_shared_from_this does not work as a virtual base class. by Eric Fiselier · 9 years ago
- 7a317ce Fix C++03 build by Eric Fiselier · 9 years ago
- e7aabbb Fix PR28079 - std::wstring_convert move constructor broken. by Eric Fiselier · 9 years ago
- abd892a Implement LWG 2488 - Make the placeholders constexpr. by Eric Fiselier · 9 years ago
- 5078baa Make default_noexcept.pass.cpp container tests more portable. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 47920eb Work around MSVC bug in atomics.types.generic/address.pass.cpp test. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- a8c7170 Use L"cat" L"dog" when concatenating string literals. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 256f000 Add array bounds assertions to satisfy MSVC's /analyze flag. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 8c4dc32 Add [[noreturn]] attribute to throw_bad_alloc_helper(). by Eric Fiselier · 9 years ago
- bbd1c53 Avoid narrowing conversions in quoted test. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- dd421f5 [libcxx] guard throw with exception enabling check by Weiming Zhao · 9 years ago
- 3aef68f Run list debug copy test in C++03. by Eric Fiselier · 9 years ago
- 8d2b315 Finish converting list _LIBCPP_DEBUG tests. by Eric Fiselier · 9 years ago
- 111c696 Cleanup _LIBCPP_DEBUG tests in std::list. More to come. by Eric Fiselier · 9 years ago
- 55e084d Cleanup filesystem::permissions ever more. by Eric Fiselier · 9 years ago
- e1a1a1f Avoid unnecessary stat call in filesystem::permissions implementation. by Eric Fiselier · 9 years ago
- 420dea5 Disable ccache usage for .fail.cpp tests. It causes bugs. by Eric Fiselier · 9 years ago
- f5b3021 Placate MSVC's unchecked malloc warning in thread tests. by Eric Fiselier · 9 years ago
- cef97f9 Use correct Clang feature names. I got them wrong in the previous commit by Eric Fiselier · 9 years ago
- 8905b11 Support old GCC exception and rtti detection macros by Eric Fiselier · 9 years ago
- b5fb8c9 Add tests for RTTI/exceptions test macros. by Eric Fiselier · 9 years ago
- 5cdd543 Fix exception/rtti detection in tests. by Eric Fiselier · 9 years ago
- d61ea34 Make shared_ptr constructor tests use count_new.hpp by Eric Fiselier · 9 years ago
- 770c688 Make locale constructors tests use count_new.hpp by Eric Fiselier · 9 years ago
- 7d4a984 Placate MSVC's unchecked malloc warnings. by Eric Fiselier · 9 years ago
- 2aa1c4a UBSan doesn't globally replace new/delete but it still makes some tests fail. Investigation needed. by Eric Fiselier · 9 years ago
- 506f9d5 Cleanup [list.modifiers] tests. by Eric Fiselier · 9 years ago
- 604b5c4 Don't use non-conforming pointer_traits specialization it tests. by Eric Fiselier · 9 years ago
- 22bff1a Move remaining _LIBCPP_VERSION tests into test/libcxx by Eric Fiselier · 9 years ago
- 67ec8a2 Move more _LIBCPP_VERSION tests to test/libcxx. by Eric Fiselier · 9 years ago
- b065399 Move all tests for _LIBCPP_VERSION in language.support to test/libcxx/language.support. by Eric Fiselier · 9 years ago
- b93bc9a Move typoed dir meta.hel to meta.help by Eric Fiselier · 9 years ago
- 3c0e3eb Use static_assert instead of runtime assert in std::money_base tests. by Eric Fiselier · 9 years ago
- 63a0af7 Remove locale tests that depend on LC_ALL. These are non-portable. by Eric Fiselier · 9 years ago
- 03dacbe Fix comment typos, strip trailing whitespace. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 14fe08b Avoid huge main() functions and huge arrays. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- a431a3a Don't use C++17 terse static assert. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- dc45b08 Fix operator precedence mistake in valarray/not.pass.cpp. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- ff58059 Suppress stupid and incorrect MSVC warning. patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- c6fcb58 Avoid assignment in return. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 91a5c55 Suppress unused warnings in std::invoke tests. by Eric Fiselier · 9 years ago
- 62957fb Guard libc++ assumption about identity hashing in test. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 571d549 Guard use of non-standard macros in denorm_min() tests. by Eric Fiselier · 9 years ago
- 868af68 Allow placement new array test to consume extra bytes as specified by the standard. by Eric Fiselier · 9 years ago
- c382dd0 Move native_handle thread tests to test/libcxx by Eric Fiselier · 9 years ago
- fa5a105 Fix PR27684 - std::tuple no longer accepts reference to incomplete type in some cases. by Eric Fiselier · 9 years ago