Skip to content

Commit 73c0f68

Browse files
fix: more portable
1 parent f5482fc commit 73c0f68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/longfellow-zk/algebra

lib/longfellow-zk/algebra/limb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Limb {
3232
public:
3333
using T = Limb<W64>;
3434

35-
#if defined(__x86_64__) || defined(_WIN64)
35+
#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__) || defined(_WIN64)
3636
using limb_t = uint64_t;
3737
#else
3838
using limb_t = uint32_t;

0 commit comments

Comments
 (0)