Skip to content
Snippets Groups Projects
Commit 4f0cb4b6 authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #4527 from jtattermusch/silence_lnk4217

Ignore warning LNK4217
parents 0cde8d45 025ffeff
Branches
Tags
No related merge requests found
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
<PreprocessorDefinitions>_WIN32_WINNT=0x600;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>_WIN32_WINNT=0x600;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WarningLevel>EnableAllWarnings</WarningLevel> <WarningLevel>EnableAllWarnings</WarningLevel>
</ClCompile> </ClCompile>
<Link>
<!-- LNK4271 pollutes test output. See #4521 -->
<AdditionalOptions>/ignore:4217 %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup /> <ItemGroup />
</Project> </Project>
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
<PreprocessorDefinitions>_WIN32_WINNT=0x600;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>_WIN32_WINNT=0x600;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WarningLevel>EnableAllWarnings</WarningLevel> <WarningLevel>EnableAllWarnings</WarningLevel>
</ClCompile> </ClCompile>
<Link>
<!-- LNK4271 pollutes test output. See #4521 -->
<AdditionalOptions>/ignore:4217 %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup /> <ItemGroup />
</Project> </Project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment