fix int.tosignedvar

This commit is contained in:
DBotThePony 2024-02-11 12:06:03 +07:00
parent cea22e65a2
commit 4b07f97168
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.1.6
projectVersion=2.1.7
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -109,7 +109,7 @@ private fun Int.toSignedVar(): Int {
if (this >= 0)
return this shl 1
else
return (this shl 1) or 1
return ((-this - 1) shl 1) or 1
}
private fun Long.toSignedVar(): Long {