-
Notifications
You must be signed in to change notification settings - Fork 78
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
MPL Overloads: template<> missing #45
Comments
ax3l
changed the title
MPL Overloads: template missing
MPL Overloads: template<> missing
Jul 29, 2019
The same warnings exist in boost 1.70.0 |
This was referenced Jul 30, 2019
Hi, does #62 fix this? |
Doesn't look like it. |
https://cuda.godbolt.org/z/s73P9a553 demonstrates that this warning still occurs with |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compiling boost MPL with (NVCC 10.1.168 and) GCC 6.4.0 and
-Wall -Wextra
throws the following warnings. Mainly-Wnon-template-friend
andoperatorXY ... declares a non-template function -- add <> to refer to a template instance
Generally, the macros for overloads seem to lack
template <>
and similar annotations:Seen with PIConGPU
0.5.0-dev
as of ComputationalRadiationPhysics/picongpu@1347ebb (and way before as well).Small example with NVCC 10.1 that triggers this via the boost property tree:
https://cuda.godbolt.org/z/ir3p6i
The text was updated successfully, but these errors were encountered: