Skip to content

Commit

Permalink
Add support for Windows on ARM and ARM64 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaslmiller authored and floitsch committed Aug 2, 2018
1 parent 9a8e518 commit 4e8b3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion double-conversion/utils.h
Expand Up @@ -68,7 +68,7 @@ inline void abort_noreturn() { abort(); }
// disabled.)
// On Linux,x86 89255e-22 != Div_double(89255.0/1e22)
#if defined(_M_X64) || defined(__x86_64__) || \
defined(__ARMEL__) || defined(__avr32__) || \
defined(__ARMEL__) || defined(__avr32__) || defined(_M_ARM) || defined(_M_ARM64) || \
defined(__hppa__) || defined(__ia64__) || \
defined(__mips__) || \
defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__) || \
Expand Down

0 comments on commit 4e8b3b5

Please sign in to comment.