1
0

Undid the changes to cryptlib.cpp.

Instead, altered the VC2008 cryptopp project settings.

Someone else will probably need to do the same thing for the 2013 version, since I don't have access to VC2013.
This commit is contained in:
Diusrex 2014-01-06 10:12:40 -07:00
parent 487c1a24de
commit ed9a500d6b
2 changed files with 2 additions and 11 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="windows-1250"?> <?xml version="1.0" encoding="windows-1250"?>
<VisualStudioProject <VisualStudioProject
ProjectType="Visual C++" ProjectType="Visual C++"
Version="9,00" Version="9.00"
Name="CryptoPP" Name="CryptoPP"
ProjectGUID="{3423EC9A-52E4-4A4D-9753-EDEBC38785EF}" ProjectGUID="{3423EC9A-52E4-4A4D-9753-EDEBC38785EF}"
RootNamespace="cryptlib" RootNamespace="cryptlib"
@ -60,6 +60,7 @@
WarningLevel="3" WarningLevel="3"
SuppressStartupBanner="true" SuppressStartupBanner="true"
DebugInformationFormat="3" DebugInformationFormat="3"
DisableSpecificWarnings="4702"
/> />
<Tool <Tool
Name="VCManagedResourceCompilerTool" Name="VCManagedResourceCompilerTool"

View File

@ -4,12 +4,6 @@
#ifndef CRYPTOPP_IMPORTS #ifndef CRYPTOPP_IMPORTS
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4702)
#endif
#include "cryptlib.h" #include "cryptlib.h"
#include "misc.h" #include "misc.h"
#include "filters.h" #include "filters.h"
@ -831,8 +825,4 @@ void AuthenticatedKeyAgreementDomain::GenerateEphemeralKeyPair(RandomNumberGener
NAMESPACE_END NAMESPACE_END
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif #endif