From 2c465d97414a06497995b95e8b31ceb32556760d Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 17 May 2025 22:56:59 -0400 Subject: [PATCH] Internals: Fix MSVC warning. --- src/verilog.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/verilog.y b/src/verilog.y index 08025f727..6af7811b6 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -325,7 +325,7 @@ int V3ParseGrammar::s_typeImpNum = 0; #define VARIO(type) \ { GRAMMARP->m_varIO = VDirection::type; } // Set direction to default-input when detect inside an ANSI port list -#define VARIOANSI(type) \ +#define VARIOANSI() \ { \ if (GRAMMARP->m_varIO == VDirection::NONE) VARIO(INPUT); \ }