Skip to content

Commit

Permalink
Mute "expect/actual classes are experimental" warning (#2427)
Browse files Browse the repository at this point in the history
This warning is introduced in Kotlin 1.9. KT-61573
If I don't mute this warning then the build fails because of `-Werror`
  • Loading branch information
nikitabobko authored Sep 4, 2023
1 parent 8baa04b commit f4c3a70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gradle/configure-source-sets.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ kotlin {
languageVersion = rootProject.ext.kotlin_lv_override
freeCompilerArgs += "-Xsuppress-version-warnings"
}
freeCompilerArgs += "-Xexpect-actual-classes"
}
}
compilations.main {
Expand Down

0 comments on commit f4c3a70

Please sign in to comment.