Skip to content

Commit 725a8f5

Browse files
authored
Merge pull request github#3574 from hvitved/csharp/unification-performance
C#: Fix performance issue in unification library
2 parents 593d4c0 + 1c5da67 commit 725a8f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

csharp/ql/src/semmle/code/csharp/Unification.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,8 @@ module Gvn {
474474
sourceDecl = any(GenericType t).getSourceDeclaration() and
475475
not sourceDecl instanceof PointerType and
476476
not sourceDecl instanceof NullableType and
477-
not sourceDecl instanceof ArrayType
477+
not sourceDecl instanceof ArrayType and
478+
not sourceDecl instanceof TupleType
478479
}
479480

480481
cached

0 commit comments

Comments
 (0)