fix highest signed int comment

This commit is contained in:
Mamy Ratsimbazafy 2018-05-17 09:45:42 +02:00 committed by GitHub
parent c588a84f19
commit 8e25b30209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import ./datatypes, ./uint_bitwise_ops, ./int_bitwise_ops, ./initialization
func high*[T](_: typedesc[IntImpl[T]]): IntImpl[T] {.inline.}=
# The lowest signed int has representation
# The highest signed int has representation
# 0b0111_1111_1111_1111 ....
# so we only have to unset the most significant bit.
let only_msb_unset = UintImpl[T].zero.not shr 1