Skip to content

Commit

Permalink
Try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-PLACET committed Dec 20, 2024
1 parent be7869b commit 3946370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sparrow/utils/large_int.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ namespace sparrow
}
while (n > 0)
{
str += '0' + static_cast<char>(n % 10);
str.push_back(static_cast<char>('0' + std::int8_t(n % 10)));
n /= 10;
}

Expand Down

0 comments on commit 3946370

Please sign in to comment.