Do not treat specific warning as error in MSVC

Viewed 159

I want to compile my project with /W3 /WX - most warnings treated as errors. However one particular warning is hard to fix, so I want compiler to continue signaling it as warning for now.

I don't want to disable it completely, in that case team members won't see that their code requires a fix, so this warning will never be fixed.

How can I disable /WX for particular warning ID?

0 Answers
Related