From 1b789154bff30326b28c3759a3a4424c1918357c Mon Sep 17 00:00:00 2001 From: FateJH Date: Fri, 5 May 2017 08:22:17 -0400 Subject: [PATCH] added compiler flag '-language:postFixOps' to stop warnings about time post-fix notation ('100 milliseconds') --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0f1839be..2103744e 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val commonSettings = Seq( organization := "net.psforever", version := "1.0.2-SNAPSHOT", scalaVersion := "2.11.8", - scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8"), + scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-language:postfixOps"), resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots", libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-actor" % "2.4.4",