Visual Studio 2015 support

This commit is contained in:
Edward Hennis
2015-08-20 12:51:14 -04:00
committed by Vinnie Falco
parent 8f3bb286f2
commit 14db51e3e4
13 changed files with 383 additions and 25 deletions

View File

@@ -25,4 +25,11 @@
#define USE_SCALAR_8X32
#define USE_SCALAR_INV_BUILTIN
#if defined(_MSC_VER) && _MSC_VER >= 1900
#pragma warning ( push )
#pragma warning ( disable: 4319 )
#endif
#include <secp256k1/src/secp256k1.c>
#if defined(_MSC_VER) && _MSC_VER >= 1900
#pragma warning ( pop )
#endif