From 1824bad1d7a67b4efa318f207f98bb88ea3368eb Mon Sep 17 00:00:00 2001 From: Michael Felt Date: Mon, 17 Oct 2016 17:11:07 +0200 Subject: [PATCH] Update unpack_template.h USE_CASE_RANGE is a GNU C feature. This change will activate USE_CASE_RANGE on any platform when using GNU C and not on any platform when a different compiler is being used. closes #14373 --- pandas/src/msgpack/unpack_template.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/src/msgpack/unpack_template.h b/pandas/src/msgpack/unpack_template.h index 95af6735520fc..fba372ddcb3e4 100644 --- a/pandas/src/msgpack/unpack_template.h +++ b/pandas/src/msgpack/unpack_template.h @@ -17,7 +17,7 @@ */ #ifndef USE_CASE_RANGE -#if !defined(_MSC_VER) +#ifdef __GNUC__ #define USE_CASE_RANGE #endif #endif