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
/
test
/
std
/
algorithms
/
alg.modifying.operations
Commit message (
Expand
)
Author
Age
Files
Lines
*
[libcxx] [test] Add casts to avoid signed/unsigned mismatch warnings on MSVC++
Billy Robert O'Neal III
2020-01-14
3
-3
/
+3
*
[libc++] Fixed copy/copy_n/copy_backward for compilers that do not support is...
Louis Dionne
2019-11-07
3
-3
/
+3
*
[libc++] Fix some constexpr tests broken by D68837
Louis Dionne
2019-11-07
4
-4
/
+4
*
[libc++][P0202] Marked algorithms copy/copy_n/copy_if/copy_backward constexpr
Louis Dionne
2019-11-06
4
-181
/
+164
*
libcxx: Rename .hpp files in libcxx/test/support to .h
Nico Weber
2019-08-21
6
-6
/
+6
*
This patch makes swap functions constexpr. Both swap overloads, swap_ranges a...
Zoe Carver
2019-07-05
2
-0
/
+33
*
Add include for 'test_macros.h' to all the tests that were missing them. Than...
Marshall Clow
2019-05-31
4
-0
/
+5
*
[libc++] Enable deprecation warnings by default
Louis Dionne
2019-03-12
2
-0
/
+4
*
Support tests in freestanding
JF Bastien
2019-02-04
42
-43
/
+125
*
D14686: 'Protect against overloaded comma in random_shuffle and improve tests...
Marshall Clow
2019-01-24
2
-2
/
+45
*
Update more file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
42
-168
/
+126
*
Tolerate Clangs new static_assert messages
Eric Fiselier
2018-12-14
1
-1
/
+1
*
[libcxx] [test] Fix whitespace, NFC.
Stephan T. Lavavej
2018-04-12
6
-19
/
+19
*
[libcxx] [test] Use TEST_COMPILER_C1XX.
Stephan T. Lavavej
2018-04-12
1
-2
/
+3
*
[libcxx] [test] Strip trailing whitespace, NFC.
Stephan T. Lavavej
2018-02-12
20
-28
/
+28
*
Another batch of P0202 constepr algirithms. remove/remove_if/remove_copy/remo...
Marshall Clow
2018-01-22
6
-8
/
+117
*
Still more P0202 constexpr-ifying. This batch is: for_each/for_each_n/lexicog...
Marshall Clow
2018-01-22
1
-2
/
+24
*
Add (commented out) constexpr tests for copy/copy_backwards/copy_if/copy_n. ...
Marshall Clow
2018-01-22
4
-4
/
+74
*
More P0202 constexpr work. This commit adds fill/fill_n/generate/generate_n/u...
Marshall Clow
2018-01-20
8
-10
/
+155
*
More P0202 constexpr-ifying in <algorithm>. This commit handles replace/repla...
Marshall Clow
2018-01-19
4
-6
/
+82
*
More P0202 constexpr-ifying in <algorithm>. This commit handles 'transform'.
Marshall Clow
2018-01-19
2
-3
/
+48
*
Some of the tests from earlier today had 'int' as the return type when it sho...
Marshall Clow
2018-01-15
2
-2
/
+2
*
partition_point gets the P0202 treatment
Marshall Clow
2018-01-15
1
-2
/
+19
*
First part of P0202: Adding constexpr modifiers to functions in <algorithm> a...
Marshall Clow
2018-01-15
1
-2
/
+17
*
[libcxx] [test] Fix MSVC warnings, null pointer deref.
Stephan T. Lavavej
2017-12-13
1
-0
/
+4
*
Fix PR#35948: generate_n does not accept floating point Size arguments.
Marshall Clow
2017-12-04
1
-5
/
+18
*
[libcxx] [test] Strip trailing whitespace. NFC.
Stephan T. Lavavej
2017-05-04
1
-1
/
+1
*
Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithm
Eric Fiselier
2017-04-18
8
-67
/
+36
*
Update the algorithm tests to not use the (deprecated) function binders. No f...
Marshall Clow
2017-03-23
4
-7
/
+15
*
Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'R...
Marshall Clow
2017-03-23
2
-2
/
+2
*
Remove random_shuffle in C++17. Please use shuffle instead. If you have to, ...
Marshall Clow
2017-03-23
2
-0
/
+2
*
Enable the -Wsign-compare warning to better support MSVC
Eric Fiselier
2016-12-11
2
-71
/
+75
*
[libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible ...
Stephan T. Lavavej
2016-12-08
1
-1
/
+2
*
[libcxx] [test] D27023: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...
Stephan T. Lavavej
2016-12-06
2
-2
/
+2
*
[libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...
Stephan T. Lavavej
2016-12-06
1
-3
/
+4
*
Work around more -Wshadow warnings
Eric Fiselier
2016-12-03
1
-1
/
+1
*
[libcxx] [test] D26816: Fix non-Standard assumptions when testing sample().
Stephan T. Lavavej
2016-11-18
1
-3
/
+14
*
Add missing include in test; NFC. Thanks to Jonathan Wakely for the report.
Marshall Clow
2016-10-13
1
-0
/
+1
*
Implement C++17 std::sample.
Eric Fiselier
2016-08-28
3
-0
/
+244
*
Mark LWG 2716 as complete - shuffle and sample disallows lvalue URNGs.
Eric Fiselier
2016-08-28
1
-1
/
+1
*
Fix portability issues in <random> tests. Patch from STL@microsoft.com
Eric Fiselier
2016-07-24
3
-5
/
+16
*
Remove trailing whitespace in test suite. Approved by Marshall Clow.
Eric Fiselier
2016-06-01
1
-1
/
+1
*
Fix warnings in test/std/algorithms
Eric Fiselier
2015-07-18
1
-5
/
+5
*
[libcxx] Properly convert the count arguments to the *_n algorithms before use.
Eric Fiselier
2015-02-10
3
-11
/
+20
*
Test commit: remove whitespace at EOL.
Dimitry Andric
2015-02-05
1
-1
/
+1
*
Fix PR#22433. The algorithm is_partitioned was testing an item in the middle ...
Marshall Clow
2015-02-02
1
-5
/
+24
*
Removed some tabs that snuck into the test suite. No functionality change
Marshall Clow
2015-01-28
1
-1
/
+1
*
Fix PR 22106; make std::swap work for multi-dimensional arrays. Thanks to Pet...
Marshall Clow
2015-01-06
1
-0
/
+49
*
Move test into test/std subdirectory.
Eric Fiselier
2014-12-20
39
-0
/
+3918