Skip to content

Commit

Permalink
add aarch64(=arm64) support
Browse files Browse the repository at this point in the history
  • Loading branch information
chaimleib committed Nov 13, 2023
1 parent d5a41f6 commit 4bdcb3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c/src/dtoa.c
Original file line number Diff line number Diff line change
Expand Up @@ -2319,7 +2319,7 @@ static bool pn_strtod2(const char* data, size_t size, double* f, pn_error_code_t
if (save_control_word != use_double_precision) {
fpu_set_control_word(save_control_word);
}
#elif defined(__arm__) || defined(__arm64__)
#elif defined(__arm__) || defined(__arm64__) || defined(__aarch64__)
*f = pn_strtod3(s, error);
#else
#error "Unknown architecture"
Expand Down

0 comments on commit 4bdcb3c

Please sign in to comment.