In this question:
How to disable a specific nvcc compiler warnings
there's a link to a long "dictionary" mapping tokens to error messages, which seems to fit NVCC ... except it doesn't cover all warnings. Specifically, I want to suppress
warning: 'long double' is treated as 'double' in device code
... and that warning isn't in there. What's the token for it? Or perhaps - how can I determine the token given a warning string?
Note: AFAICT, it's not
"double" used for "long double" in generated C code
which is very similar.