Is there a cpp file for which, when being compiled, this warning gets emitted? If so, it is better to disable the warning via "... ifdef _MSC_VER, pragma warning disable".
If there's a header which includes the 3rd party header file that generates the warning, it also is better to disable as "... ifdef _MSC_VER, pragma warnings push, pragma warning disable, include <3rd party>, ifdef MSC pragma pop"
Originally posted by @antkmsft in #2471 (comment)
Is there a cpp file for which, when being compiled, this warning gets emitted? If so, it is better to disable the warning via "...
ifdef _MSC_VER,pragma warning disable".If there's a header which includes the 3rd party header file that generates the warning, it also is better to disable as "...
ifdef _MSC_VER,pragma warnings push,pragma warning disable,include <3rd party>,ifdef MSCpragma pop"Originally posted by @antkmsft in #2471 (comment)