summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers
Commit message (Expand)AuthorAgeFilesLines
* [libcxx] [test] Update for C++17 feature removals.Stephan T. Lavavej2017-08-242-2/+6
* [libcxx] [test] Change comments to say C++ instead of c++. NFC.Stephan T. Lavavej2017-07-295-5/+5
* [libcxx] [test] Make files consistently end with newlines, NFC.Stephan T. Lavavej2017-07-291-1/+1
* [libcxx] [test] Untabify, NFC.Stephan T. Lavavej2017-07-2932-114/+114
* Fix bug 33389 - __is_transparent check requires too muchMarshall Clow2017-06-1310-10/+60
* [array.tuple]/1 says that instantiating tuple_element<N, array<T, M>> is ill-...Marshall Clow2017-06-121-0/+35
* [libcxx] [test] Fix MSVC "warning C6326: Potential comparison of a constant w...Stephan T. Lavavej2017-05-051-2/+2
* [libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej2017-05-041-1/+1
* Fix tests for extended noexcept in the container adaptors testsEric Fiselier2017-04-196-9/+12
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> in std::unordered_map and std::unorder...Eric Fiselier2017-04-1823-149/+51
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> macros in std::unordered_set and std::...Eric Fiselier2017-04-1826-196/+58
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> for std::queue and std::priority_queue.Eric Fiselier2017-04-1820-58/+44
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> macro uses in std::stack.Eric Fiselier2017-04-1810-30/+22
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> macros in std::map and std::multimapEric Fiselier2017-04-1821-88/+42
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> for std::set and std::multisetEric Fiselier2017-04-1824-88/+48
* Sigh. Once again forgot about the 'no exceptions' bots.Marshall Clow2017-04-172-0/+8
* Mark LWG#2853 as complete. No code changes required, but added a couple of ex...Marshall Clow2017-04-172-0/+48
* Cleanup one more <forward_list> testEric Fiselier2017-04-162-35/+5
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in <forward_list>Eric Fiselier2017-04-1611-45/+21
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in <list>Eric Fiselier2017-04-169-36/+18
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in dequeEric Fiselier2017-04-1610-42/+20
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in <array>Eric Fiselier2017-04-161-1/+3
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in vector.Eric Fiselier2017-04-1619-81/+43
* Fix more -Wshadow warnings introduced by recent Clang changeEric Fiselier2017-04-045-6/+0
* [libcxx] Improve code generation for vector::clear().Bruce Mitchener2017-03-231-0/+40
* Implement P0599: 'noexcept for hash functions'. Fix a couple of hash function...Marshall Clow2017-03-231-1/+3
* Fix sign-compare warning in test; Oddly this only appears on OS XEric Fiselier2017-03-031-7/+5
* Fix test failures due to bad test hasherEric Fiselier2017-03-0118-0/+24
* Update all bug URL's to point to https://bugs.llvm.org/...Eric Fiselier2017-02-176-8/+8
* Stop using random_shuffle in the libc++ test suite. It's going to be removed ...Marshall Clow2017-02-072-2/+8
* [libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3.Stephan T. Lavavej2017-02-0518-57/+0
* [libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3.Stephan T. Lavavej2017-02-0567-147/+305
* Change the return type of emplace_[front|back] back to void when building wit...Marshall Clow2017-01-249-9/+165
* Implement P0513R0 - "Poisoning the Hash"Eric Fiselier2017-01-211-0/+28
* [libcxx] [test] Fix comment typos, strip trailing whitespace.Stephan T. Lavavej2017-01-1812-13/+13
* [libcxx] [test] Fix MSVC warnings C4127 and C6326 about constants.Stephan T. Lavavej2017-01-181-2/+2
* Implement the missing constexpr stuff in <array>. Fixes PR#31645.Marshall Clow2017-01-163-3/+53
* [libcxx] [test] Strip trailing whitespace. NFC, no code review.Stephan T. Lavavej2017-01-071-2/+2
* Implement the last bit of P0031: 'A Proposal to Add Constexpr Modifiers to re...Marshall Clow2017-01-042-0/+47
* Fix debug mode for vector/list and cleanup testsEric Fiselier2016-12-2814-502/+16
* Fix yet another missed -Wunused warning. Hopefully this is the last oneEric Fiselier2016-12-241-7/+8
* fix warnings only produced by apple-clangEric Fiselier2016-12-245-33/+20
* Fix unused parameters and variablesEric Fiselier2016-12-237-48/+27
* Fix PR31378 - std::list::remove should not require a default constructible al...Eric Fiselier2016-12-141-33/+47
* [libcxx] [test] Fix MSVC x64 truncation warnings with 32-bit allocator size_t...Stephan T. Lavavej2016-12-143-3/+3
* [libcxx] [test] Fix an improper assumption about Null Forward Iterators.Stephan T. Lavavej2016-12-121-4/+0
* Enable the -Wsign-compare warning to better support MSVCEric Fiselier2016-12-114-16/+25
* Fix copy/paste errors introduced in r289358Eric Fiselier2016-12-112-16/+16
* Fix undefined behavior in container swap tests.Eric Fiselier2016-12-1117-183/+180
* Fix missing const on set::count. Patch from Andrey KhalyavinEric Fiselier2016-12-091-9/+11
OpenPOWER on IntegriCloud