Skip to content

Commit

Permalink
fix: silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Mar 24, 2024
1 parent 1601981 commit 0fca01c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/crackcodes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ void decode_permissible_crack_code(

int64_t sxe = sx + 1;

const int64_t pixels = (sx+1) * (sy+1);
const uint64_t pixels = (sx+1) * (sy+1);

// graph is of corners and edges
// origin is located at top left
Expand Down Expand Up @@ -731,7 +731,7 @@ void decode_impermissible_crack_code(

int64_t sxe = sx + 1;

const int64_t pixels = (sx+1) * (sy+1);
const uint64_t pixels = (sx+1) * (sy+1);

// graph is of corners and edges
// origin is located at top left
Expand Down

0 comments on commit 0fca01c

Please sign in to comment.