From 6ae74f61f30fe0efe66ae052d73afe384886ab7f Mon Sep 17 00:00:00 2001 From: narimiran Date: Wed, 22 May 2019 20:38:08 +0200 Subject: [PATCH] remove trailing whitespace [ci skip] --- compiler/bitsets.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/bitsets.nim b/compiler/bitsets.nim index 0f12da95ff..e0cf33b1dc 100644 --- a/compiler/bitsets.nim +++ b/compiler/bitsets.nim @@ -85,7 +85,7 @@ const populationCount: array[low(int8)..high(int8), int8] = block: ((x and 0b00100000'i8) shr 5) + ((x and 0b01000000'i8) shr 6) + ((x and 0b10000000'i8) shr 7) - + for it in low(int8)..high(int8): arr[it] = countSetBits(it)