From: alex Date: Sat, 31 Aug 2013 20:25:12 +0000 (+0400) Subject: Fix WIN32 compilation issues X-Git-Tag: v0.4.4.5~25 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=89dd133da730890f79ee7275c4d97a56e2e084d2 Fix WIN32 compilation issues --- diff --git a/src/checkpoints.h b/src/checkpoints.h index 101645e..a8e7ecb 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -10,6 +10,12 @@ #define CHECKPOINT_MAX_SPAN (60 * 60 * 4) // max 4 hours before latest block +#ifdef WIN32 +#undef STRICT +#undef PERMISSIVE +#undef ADVISORY +#endif + class uint256; class CBlockIndex; class CSyncCheckpoint;