Can I tell the compiler to ignore only a certain t...
# compiler
m
Can I tell the compiler to ignore only a certain type of warnings? (deprecation in my case)
s
I wish 😄 this is a long-requested feature
I can’t remember where I saw this suggestion, but I heard a potential workaround: turn off
-Werror
and then pipe the compiler output into your own validation code that parses the warnings
m
I see 👍 Thanks for the insights!