Skip to content

Commit 2066800

Browse files
lpw25damiendoligez
authored andcommitted
Turn off warning 40 by default (ocaml#1333)
* Turn off warning 40 by default
1 parent c11d94c commit 2066800

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Changes

+2
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,8 @@ Working version
239239
- MPR#7624: handle warning attributes placed on let bindings
240240
(Xavier Clerc, report by dinosaure, review by Alain Frisch)
241241

242+
- GPR#1333: turn off warning 40 by default
243+
(Leo White)
242244

243245
### Other libraries:
244246

man/ocamlc.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ compilation in any way (even if it is fatal). If a warning is enabled,
986986

987987
.IP
988988
The default setting is
989-
.BR \-w\ +a\-4\-6\-7\-9\-27\-29\-32..39\-41\-42\-44\-45\-48\-50\-60 .
989+
.BR \-w\ +a\-4\-6\-7\-9\-27\-29\-32..42\-44\-45\-48\-50\-60 .
990990
Note that warnings
991991
.BR 5 \ and \ 10
992992
are not always triggered, depending on the internals of the type checker.

manual/manual/cmds/unified-options.etex

+1-1
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ that are currently defined are ignored. The warnings are as follows.
745745
\input{warnings-help.tex}
746746
\end{options}
747747

748-
The default setting is "-w +a-4-6-7-9-27-29-32..39-41..42-44-45-48-50".
748+
The default setting is "-w +a-4-6-7-9-27-29-32..42-44-45-48-50-60".
749749
It is displayed by {\machine\ocamlx\ -help}.
750750
Note that warnings 5 and 10 are not always triggered, depending on
751751
the internals of the type checker.

utils/warnings.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ let parse_options errflag s =
297297
current := {error; active}
298298

299299
(* If you change these, don't forget to change them in man/ocamlc.m *)
300-
let defaults_w = "+a-4-6-7-9-27-29-32..39-41..42-44-45-48-50-60";;
300+
let defaults_w = "+a-4-6-7-9-27-29-32..42-44-45-48-50-60";;
301301
let defaults_warn_error = "-a+31";;
302302

303303
let () = parse_options false defaults_w;;

0 commit comments

Comments
 (0)