[Issue 4482] New: Missing warnings when not compiling with -w
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sun Jul 18 00:54:40 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4482
Summary: Missing warnings when not compiling with -w
Product: D
Version: D2
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: jmdavisProg at gmail.com
--- Comment #0 from Jonathan M Davis <jmdavisProg at gmail.com> 2010-07-18 00:54:36 PDT ---
If I have series of statements such as
throw new Exception("it broke");
writeln("unreachable");
and compile with -w, then naturally, this won't compile because the second
statement is unreachable. That's good. However, if you do not compile with -w,
no warning is printed.
Shouldn't all warnings be printed regardless and -w simply choose to treat them
as errors? As it is, if you're foolish enough not to compile with -w, you can
easily miss stuff that's obviously wrong. I can understand the user choosing
not to treat a warning as an error, but I would expect it to still be reported,
and it's not.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list