-
Notifications
You must be signed in to change notification settings - Fork 902
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
Fix compiler warning about non-POD types passed through ellipsis #7781
Fix compiler warning about non-POD types passed through ellipsis #7781
Conversation
rerun tests |
1 similar comment
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7781 +/- ##
===============================================
+ Coverage 81.86% 82.67% +0.81%
===============================================
Files 101 103 +2
Lines 16884 17551 +667
===============================================
+ Hits 13822 14511 +689
+ Misses 3062 3040 -22
Continue to review full report at Codecov.
|
Rerun tests. |
@gpucibot merge |
In #7725 I updated some of the fall through error cases to use old, C-style ellipsis variadics since we don't care about the parameters in the error case. Turns out C++ forbids passing "non-POD" types through this kind of variadic ellipsis, which ends up generating a compiler warning: