From cf18366c464e4e6a91bff51315b67bdd8a7e820e Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sat, 21 Sep 2013 18:30:35 +0200 Subject: [PATCH] LDMD: Ignore -quiet, it is the default. GitHub: Fixes #472. --- driver/ldmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/ldmd.cpp b/driver/ldmd.cpp index 34d94e6f..d65360e1 100644 --- a/driver/ldmd.cpp +++ b/driver/ldmd.cpp @@ -911,7 +911,7 @@ void buildCommandLine(std::vector& r, const Params& p) } if (p.emitStaticLib) r.push_back("-lib"); if (p.noFloat) warning("-nofloat is ignored by LDC."); - if (p.quiet) r.push_back("-quiet"); // Undocumented. + // -quiet is the default in (newer?) frontend versions, just ignore it. if (p.release) r.push_back("-release"); // Also disables boundscheck. if (p.noBoundsChecks) r.push_back("-disable-boundscheck"); if (p.emitUnitTests) r.push_back("-unittest");