mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Remove iptrdiff and uptrdiff. Bump version to 0.3.100
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user