You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get errors on the following lines when compiling on 64-bit Linux (Ubuntu or Fedora, but I assume this is not distro-specific). The problem in all cases is the use of size_t, causing a ulong to be passed as a parameter that should be int.
Importing std.conv and adding to!int as needed fixed the problem in all cases. I'd have submitted a PR, but I don't know if this is how you want to fix it.
The text was updated successfully, but these errors were encountered:
I get errors on the following lines when compiling on 64-bit Linux (Ubuntu or Fedora, but I assume this is not distro-specific). The problem in all cases is the use of
size_t
, causing aulong
to be passed as a parameter that should beint
.Importing
std.conv
and addingto!int
as needed fixed the problem in all cases. I'd have submitted a PR, but I don't know if this is how you want to fix it.The text was updated successfully, but these errors were encountered: