From e47492b0d5547a65d003ef2879dd6e48dacdd943 Mon Sep 17 00:00:00 2001 From: MichaelSimkinCortica Date: Tue, 9 Aug 2016 11:56:22 +0300 Subject: [PATCH] MSVC support fixed --- LifeAPI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LifeAPI.h b/LifeAPI.h index 548afec..f72873c 100644 --- a/LifeAPI.h +++ b/LifeAPI.h @@ -19,7 +19,7 @@ #define YES 1 #define NO 0 -#ifdef __MSC_VER +#ifdef _MSC_VER #include #define __builtin_popcount __popcnt64 #endif @@ -1919,4 +1919,4 @@ int IsInside(LifeState* state, LifeBox* box) int IsInside(LifeBox* box) { return IsInside(GlobalState, box); -} \ No newline at end of file +}