Skip to content

Commit

Permalink
Suppress warnings from the 3.3.4 compiler, which we cannot fix and wh…
Browse files Browse the repository at this point in the history
…ich are not our fault(?)
  • Loading branch information
MateuszKubuszok committed Sep 30, 2024
1 parent 57b8430 commit cd2dba1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ciRelease := {
val versions = new {
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val scala3 = "3.3.3"
val scala3 = "3.3.4"

// Which versions should be cross-compiled for publishing
val scalas = List(scala212, scala213, scala3)
Expand Down Expand Up @@ -93,6 +93,7 @@ val settings = Seq(
"-feature",
"-no-indent",
"-Wconf:msg=Unreachable case:s", // suppress fake (?) errors in internal.compiletime
"-Wconf:msg=Missing symbol position:s", // suppress warning https://github.com/scala/scala3/issues/21672
"-Wnonunit-statement",
// "-Wunused:imports", // import x.Underlying as X is marked as unused even though it is! probably one of https://github.com/scala/scala3/issues/: #18564, #19252, #19657, #19912
"-Wunused:privates",
Expand Down

0 comments on commit cd2dba1

Please sign in to comment.