[flang-commits] [flang] [flang][driver] -Werror promotes warnings to error and interopts with -Wfatal-errors (PR #148748)

Peter Klausler via flang-commits flang-commits at lists.llvm.org
Tue Jul 15 09:33:44 PDT 2025


================
@@ -105,22 +111,28 @@ class MessageFormattedText {
 public:
   template <typename... A>
   MessageFormattedText(const MessageFixedText &text, A &&...x)
-      : severity_{text.severity()} {
+      : severity_{text.severity(false)} {
----------------
klausler wrote:

argument not needed here, it's the default.  but `severity()` should remain just an accessor anyway.

https://github.com/llvm/llvm-project/pull/148748


More information about the flang-commits mailing list