ICU-20513 Treat MSVC warnings C4910 and C4003 as errors in the library code for CI builds.

This commit is contained in:
Jeff Genovy 2019-03-22 11:55:22 -07:00
parent be25c277fd
commit 633b6510c4

View file

@ -17,8 +17,10 @@
C4005 Macro redifintion.
C4068 Unknown pragma.
C4267 Conversion from size_t to type, possible loss of data.
C4910 __declspec(dllexport) and extern are incompatible on an explicit instantiation.
C4003 Not enough parameters for macro.
-->
<TreatSpecificWarningsAsErrors>4251;4661;4715;4706;4005;4068;4267;%(TreatSpecificWarningsAsErrors)</TreatSpecificWarningsAsErrors>
<TreatSpecificWarningsAsErrors>4251;4661;4715;4706;4005;4068;4267;4910;4003;%(TreatSpecificWarningsAsErrors)</TreatSpecificWarningsAsErrors>
</ClCompile>
</ItemDefinitionGroup>
</Project>