Skip to content

Commit

Permalink
Hopefully, fix macOS build with Xcode 15.4
Browse files Browse the repository at this point in the history
  • Loading branch information
darkk committed Sep 2, 2024
1 parent 04c435d commit 99c1ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PMP_Multilinear.h
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,7 @@ class PMP_Multilinear_Hasher
uint32_t hiProduct = c_ctr.HighPart * prevConstTerm.HighPart + midProduct.HighPart;

constTerm.QuadPart += lowProduct.QuadPart;
ctr += hiProduct + ( constTerm.QuadPart < lowProduct.QuadPart );
ctr += hiProduct + ((constTerm.QuadPart < lowProduct.QuadPart) ? 1 : 0);

/* for ( uint32_t i=0; i<PMPML_CHUNK_SIZE; i+=8 )
{
Expand Down

0 comments on commit 99c1ea7

Please sign in to comment.