Remove use of NDEBUG in dll.h

pull/286/head
Jeffrey Walton 2016-09-17 14:40:23 -04:00
parent eb107a6d6f
commit dc09f7446c
1 changed files with 5 additions and 5 deletions

10
dll.h
View File

@ -47,15 +47,15 @@
#ifdef _DLL #ifdef _DLL
// cause CRT DLL to be initialized before Crypto++ so that we can use malloc and free during DllMain() // cause CRT DLL to be initialized before Crypto++ so that we can use malloc and free during DllMain()
#ifdef NDEBUG #ifdef CRYPTOPP_DEBUG
#pragma comment(lib, "msvcrt") # pragma comment(lib, "msvcrtd")
# pragma comment(lib, "cryptopp")
#else #else
#pragma comment(lib, "msvcrtd") # pragma comment(lib, "msvcrt")
# pragma comment(lib, "cryptopp")
#endif #endif
#endif #endif
#pragma comment(lib, "cryptopp")
#endif // #ifdef CRYPTOPP_IMPORTS #endif // #ifdef CRYPTOPP_IMPORTS
#include <new> // for new_handler #include <new> // for new_handler