-
Notifications
You must be signed in to change notification settings - Fork 916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup using C++17 features #7931
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.20 #7931 +/- ##
===============================================
+ Coverage 82.30% 82.71% +0.41%
===============================================
Files 101 103 +2
Lines 17053 17702 +649
===============================================
+ Hits 14035 14643 +608
- Misses 3018 3059 +41
Continue to review full report at Codecov.
|
@gpucibot merge |
auto const min = std::min(lhs, rhs); | ||
auto const max = std::max(lhs, rhs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not minmax as mentioned in the comment?
cuDF 0.20 headers [now use C++17 features](rapidsai/cudf#7931), so we need to update to C++17 also. We will also need to update CI images to use gcc-9, as C++17 support is incomplete in gcc-7 and gcc-8. Authors: - Paul Taylor (https://github.com/trxcllnt) Approvers: - Keith Kraus (https://github.com/kkraus14) - Christopher Harris (https://github.com/cwharris) - AJ Schmidt (https://github.com/ajschmidt8) URL: #382
Small cleanup PR. Follow up to #7931 Authors: - Conor Hoekstra (https://github.com/codereport) Approvers: - Mark Harris (https://github.com/harrism) - Robert Maynard (https://github.com/robertmaynard) URL: #8089
Small cleanup PR