Skip to content

Commit

Permalink
Ignore C4458 by for entire solution by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 15, 2016
1 parent bece46e commit e5b215c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@
<ClCompile>
<AdditionalIncludeDirectories>$(SolutionDir);$(ProjectDir);$(xrSdkDir)include;$(DXSDK_DIR)Include;$(SolutionDir)Externals\luajit\src;$(SolutionDir)Externals\luabind;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DisableSpecificWarnings>4251;4275</DisableSpecificWarnings>
<!--
4251 : class 'x' needs to have dll-interface to be used by clients of class 'y'
4275 : non dll-interface class 'x' used as base for dll-interface class 'y'
4458 : declaration of 'x' hides class member
-->
<DisableSpecificWarnings>4251;4275;4458</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalLibraryDirectories>$(xrSdkDir)libraries;$(xrLibDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
Expand Down

0 comments on commit e5b215c

Please sign in to comment.