Skip to content

Commit

Permalink
Merge pull request #46 from chaimleib/master
Browse files Browse the repository at this point in the history
add aarch64(=arm64) support
  • Loading branch information
sfiera committed Nov 15, 2023
2 parents d5a41f6 + 4bdcb3c commit 30053d9
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 30053d9

Please sign in to comment.