-
Notifications
You must be signed in to change notification settings - Fork 907
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
Correct unused parameter warnings in transform and unary ops #8521
Correct unused parameter warnings in transform and unary ops #8521
Conversation
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.
lgtm
std::enable_if_t<!cudf::is_fixed_width<T>() && !std::is_same<T, string_view>::value && | ||
!std::is_same<T, list_view>::value && !std::is_same<T, struct_view>::value, | ||
void> | ||
operator()(Args&&...) |
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.
❤️
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-21.08 #8521 +/- ##
===============================================
Coverage ? 82.60%
===============================================
Files ? 109
Lines ? 17841
Branches ? 0
===============================================
Hits ? 14737
Misses ? 3104
Partials ? 0 Continue to review full report at Codecov.
|
…nsform_and_unary_ops
@gpucibot merge |
Starting in CUDA 11.3, nvcc will start to unconditionally warn about unused parameters on functions/methods that are in anonymous namespaces.
This corrects issues found by this warning in transform and unary op algorithms