From 795bb86227cc782459bae052af1c1bf929de0bb2 Mon Sep 17 00:00:00 2001 From: Mateusz Gancarz Date: Thu, 27 Feb 2025 14:25:57 +0100 Subject: [PATCH] [#73220] fix V3Options compilation error --- src/V3Options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3Options.cpp b/src/V3Options.cpp index 1b66fa91d..94aa678cf 100644 --- a/src/V3Options.cpp +++ b/src/V3Options.cpp @@ -1640,7 +1640,7 @@ void V3Options::parseOptsList(FileLine* fl, const string& optdir, int argc, DECL_OPTION("-top", Set, &m_topModule); DECL_OPTION("-top-module", Set, &m_topModule); DECL_OPTION("-trace", OnOff, &m_trace); - DECL_OPTION("-trace-saif", CbCall, [this, fl]() { + DECL_OPTION("-trace-saif", CbCall, [this]() { m_trace = true; m_traceFormat = TraceFormat::SAIF; });