Deprecate Architecture.bitness property
There is no such thing as "bitness" of CPU achitecture. Something more appropriate and correct (e.g. ABI) should be introduced instead.
This commit is contained in:
committed by
teamcityserver
parent
bed42e9ab2
commit
b541721a79
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
package org.jetbrains.kotlin.konan.target
|
package org.jetbrains.kotlin.konan.target
|
||||||
|
|
||||||
enum class Architecture(val bitness: Int) {
|
enum class Architecture(@Deprecated("Compare Architecture entries instead.") val bitness: Int) {
|
||||||
X64(64),
|
X64(64),
|
||||||
X86(32),
|
X86(32),
|
||||||
ARM64(64),
|
ARM64(64),
|
||||||
|
|||||||
Reference in New Issue
Block a user