gradle: Remove support for unsigned integers

This commit is contained in:
Damir Jelić 2021-02-17 16:08:05 +01:00
parent e2692ec604
commit f6d31f15f1

View file

@ -70,7 +70,6 @@ allprojects {
// Warnings are potential errors, so stop ignoring them
// You can override by passing `-PallWarningsAsErrors=false` in the command line
kotlinOptions.allWarningsAsErrors = project.getProperties().getOrDefault("allWarningsAsErrors", "true").toBoolean()
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.ExperimentalUnsignedTypes"
}
}