Changes for upcoming GSL extension project #148

Merged
CommanderTvis merged 98 commits from gsl-experiment into dev 2021-02-19 13:34:27 +03:00
Showing only changes of commit 96957dfa4b - Show all commits

View File

@ -7,6 +7,7 @@ kotlin.sourceSets {
with(languageSettings) { with(languageSettings) {
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview") useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi") useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
useExperimentalAnnotation("kotlinx.coroutines.ObsoleteCoroutinesApi")
altavir commented 2021-02-19 11:06:53 +03:00 (Migrated from github.com)
Review

Do we need that?

Do we need that?
CommanderTvis commented 2021-02-19 13:32:29 +03:00 (Migrated from github.com)
Review

This line removes compiler warning. It could have been placed to gradle-tools project, actually.

This line removes compiler warning. It could have been placed to gradle-tools project, actually.
} }
} }