summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Settings.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-02-25 01:35:46 +0000
committerPaul Phillips <paulp@improving.org>2010-02-25 01:35:46 +0000
commit2bf3a560d6b9c5c187f1b04e1cd687d7a3604bb7 (patch)
treeee0ca4db3ff79f340c73e45c01a8a0ebaba92cd8 /src/compiler/scala/tools/nsc/Settings.scala
parent4aa7ec183ea0f9938ced697fce3494234d14e71d (diff)
downloadscala-2bf3a560d6b9c5c187f1b04e1cd687d7a3604bb7.tar.gz
scala-2bf3a560d6b9c5c187f1b04e1cd687d7a3604bb7.tar.bz2
scala-2bf3a560d6b9c5c187f1b04e1cd687d7a3604bb7.zip
Created -Yfatal-warnings, as otherwise I can't ...
Created -Yfatal-warnings, as otherwise I can't see how to make partest fail on the presence of an unchecked warning. It'll come in handy anyway. Now we have a real tough guy's command line for those who want it: % scalac -unchecked -deprecation -Yfatal-warnings `find . -name '*.scala'` Not for the timid. Review by community.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Settings.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Settings.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/Settings.scala b/src/compiler/scala/tools/nsc/Settings.scala
index 7cb411ffca..2d88b38777 100644
--- a/src/compiler/scala/tools/nsc/Settings.scala
+++ b/src/compiler/scala/tools/nsc/Settings.scala
@@ -943,6 +943,7 @@ trait ScalacSettings {
val Yjenkins = BooleanSetting ("-Yjenkins-hashCodes", "Use jenkins hash algorithm for case class generated hashCodes.")
// Warnings
+ val Ywarnfatal = BooleanSetting ("-Yfatal-warnings", "Fail the compilation if there are any warnings.")
val Xwarninit = BooleanSetting ("-Xwarninit", "Warn about possible changes in initialization semantics")
val Xchecknull = BooleanSetting ("-Xcheck-null", "Emit warning on selection of nullable reference")
val Xwarndeadcode = BooleanSetting ("-Ywarn-dead-code", "Emit warnings for dead code")