Skip to content

Commit

Permalink
CodeGen: drop commented-out code
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Nov 16, 2023
1 parent 3e20c4c commit 929ab30
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Cesium.CodeGen/Contexts/Meta/FunctionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public void VerifySignatureEquality(string name, ParametersInfo? parameters, ITy
foreach (var (a, b) in actualParams.Zip(declaredParams))
{
if (!a.Type.IsEqualTo(b.Type))
//if (a != b)
throw new CompilationException(
$"Incorrect type for parameter {a.Name}: declared as {b.Type}, defined as {a.Type}.");
}
Expand Down

0 comments on commit 929ab30

Please sign in to comment.