Skip to content

Commit 8a4d4fd

Browse files
committed
Fix.
1 parent a4683b1 commit 8a4d4fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/slang/slang-check-expr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5005,7 +5005,7 @@ Expr* SemanticsExprVisitor::visitMemberExpr(MemberExpr* expr)
50055005
return CheckSwizzleExpr(expr, baseScalarType, 1);
50065006
}
50075007
}
5008-
else if (as<NamespaceType>(baseType))
5008+
if (as<NamespaceType>(baseType))
50095009
{
50105010
return _lookupStaticMember(expr, expr->baseExpression);
50115011
}

0 commit comments

Comments
 (0)