mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Minor indention change.
This commit is contained in:
@@ -208,6 +208,6 @@ macro bool is_power_of_2(x)
|
||||
macro next_power_of_2(x)
|
||||
{
|
||||
$typeof(x) y = 1;
|
||||
while (y < x) y += y;
|
||||
while (y < x) y += y;
|
||||
return y;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user