All: Fix typo, disabling __builtin_expect on MSVS

This commit is contained in:
Jeffrey Pfau 2015-06-07 21:20:54 -07:00
parent 1a4ed6fe5e
commit c0909c8713
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ typedef int32_t ssize_t;
#define DECL_BIT(TYPE, FIELD, BIT) DECL_BITS(TYPE, FIELD, BIT, 1)
#ifdef _MSC_VER
#ifndef _MSC_VER
#define LIKELY(X) __builtin_expect(!!(X), 1)
#define UNLIKELY(X) __builtin_expect(!!(X), 0)
#else