Merge pull request #540 from christianpaquin/cp-fix-sike-on-win32

Fix build failure on Visual Studio x86
This commit is contained in:
Douglas Stebila 2019-08-21 15:58:42 -07:00 committed by GitHub
commit dba6857db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,9 @@ version: 1.0.{build}
image: Visual Studio 2017
platform: x64
platform:
- x86
- x64
build:
verbosity: minimal

View File

@ -59,7 +59,7 @@ typedef uint64_t digit_t; // Unsigned 64-bit digit
// Selection of generic, portable implementation
#if defined(_GENERIC_)
#if defined(_GENERIC_) || (_X86_ && OS_TARGET == OS_WIN)
#define GENERIC_IMPLEMENTATION
#endif