Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions LifeAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#define YES 1
#define NO 0

#ifdef __MSC_VER
#ifdef _MSC_VER
#include <intrin.h>
#define __builtin_popcount __popcnt64
#define __builtin_popcountll __popcnt64
#endif

enum CopyType { COPY, OR, XOR, AND };
Expand Down Expand Up @@ -1919,4 +1919,4 @@ int IsInside(LifeState* state, LifeBox* box)
int IsInside(LifeBox* box)
{
return IsInside(GlobalState, box);
}
}