diff options
-rw-r--r-- | lib/system/jssys.nim | 4 | ||||
-rw-r--r-- | todo.txt | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/system/jssys.nim b/lib/system/jssys.nim index 1196a81ef..8766906e3 100644 --- a/lib/system/jssys.nim +++ b/lib/system/jssys.nim @@ -646,10 +646,10 @@ proc tenToThePowerOf(b: int): BiggestFloat = result = 1.0 while true: if (b and 1) == 1: - result *= a + result = result * a b = b shr 1 if b == 0: break - a *= a + a = a * a const IdentChars = {'a'..'z', 'A'..'Z', '0'..'9', '_'} diff --git a/todo.txt b/todo.txt index 16c05186a..bd8f7f89e 100644 --- a/todo.txt +++ b/todo.txt @@ -2,7 +2,6 @@ version 0.9.6 ============= - scopes are still broken for generic instantiation! -- integrate the new LL into the devel branch - start experimental branch - overloading of '='; general lift mechanism |