Skip to content

Commit

Permalink
7.1 Order of Evaluation Can Be Enforced
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagofneto committed Oct 26, 2023
1 parent fe92cfb commit a1bb7fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/types/words64.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl Words64TryIntoU256LE of TryInto<Words64, u256> {
}

// left shift and add
output = output | (*self.at(i)).into() * *pows.at(i - 1);
output = output | ((*self.at(i)).into() * *pows.at(i - 1));

i += 1;
}
Expand Down

0 comments on commit a1bb7fe

Please sign in to comment.