Skip to content

Commit

Permalink
Update unpack_template.h (pandas-dev#14441)
Browse files Browse the repository at this point in the history
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 pandas-dev#14373
  • Loading branch information
aixtools authored and jreback committed Oct 20, 2016
1 parent 65362aa commit 794f792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/src/msgpack/unpack_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

#ifndef USE_CASE_RANGE
#if !defined(_MSC_VER)
#ifdef __GNUC__
#define USE_CASE_RANGE
#endif
#endif
Expand Down

0 comments on commit 794f792

Please sign in to comment.