Internals: Fix MSVC warning.

This commit is contained in:
Wilson Snyder 2025-05-17 22:56:59 -04:00
parent 19be36dbcb
commit 2c465d9741
1 changed files with 1 additions and 1 deletions

View File

@ -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); \
}