1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Windows: fix detection of Visual Studio version to activate assembly optimizations.

This commit is contained in:
Mounir IDRASSI
2016-05-24 07:33:07 +02:00
parent 94fdcdf18b
commit 3f806010d2

View File

@@ -38,6 +38,10 @@
#endif
#endif
#if defined(_MSC_VER) && (_MSC_VER > 1200)
#define CRYPTOPP_MSVC6PP_OR_LATER
#endif
#ifndef CRYPTOPP_ALIGN_DATA
#if defined(_MSC_VER)
#define CRYPTOPP_ALIGN_DATA(x) __declspec(align(x))