Remove iptrdiff and uptrdiff. Bump version to 0.3.100

This commit is contained in:
Christoffer Lerno
2022-11-17 23:44:54 +01:00
parent bbef94b0fd
commit da1a45f718
61 changed files with 125 additions and 142 deletions

View File

@@ -18,7 +18,7 @@ fn String bin(int x)
str.append_repeat('0', bits);
for (int i = 0; i < bits; i++)
{
str.set((usize)(bits - i - 1), x & 1 ? '1' : '0');
str.set((usz)(bits - i - 1), x & 1 ? '1' : '0');
x >>= 1;
}
return str;