Skip to content

Commit

Permalink
Fix typo in AtomicFU property
Browse files Browse the repository at this point in the history
I added this property in #894 to ensure we'd be using the AtomicFU
compiler plugin [1] for native when #855 is merged. However, it seems
like a typo slipped through: I think I copied the property from the
description of the PR that added this feature to AtomicFU [2]. Turns out
there was a typo in that description. The property is
kotlinx.atomicfu.enableNativeIrTransformation, not
kotlinx.atomicfu.enableNativeIrTransformations as can be seen in the
source code [3].

[1] https://github.com/Kotlin/kotlinx-atomicfu/blob/0.23.1/README.md#atomicfu-compiler-plugin
[2] Kotlin/kotlinx-atomicfu#363
[3] https://github.com/Kotlin/kotlinx-atomicfu/blob/0.23.1/atomicfu-gradle-plugin/src/main/kotlin/kotlinx/atomicfu/plugin/gradle/AtomicFUGradlePlugin.kt#L38
  • Loading branch information
lukellmann committed Mar 2, 2024
1 parent 5b2d7f6 commit e613c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ kotlin.code.style=official
# https://github.com/Kotlin/kotlinx-atomicfu#atomicfu-compiler-plugin
kotlinx.atomicfu.enableJvmIrTransformation=true
kotlinx.atomicfu.enableJsIrTransformation=true
kotlinx.atomicfu.enableNativeIrTransformations=true
kotlinx.atomicfu.enableNativeIrTransformation=true

0 comments on commit e613c0a

Please sign in to comment.