summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar qunyanm <unknown>2015-05-19 09:03:43 -0700
committerGravatar qunyanm <unknown>2015-05-19 09:03:43 -0700
commite34a7e4fd70d1aafacb2782cbcc0354f6587d649 (patch)
tree697f65172db64b14c836cb94e6242df96bc211aa
parentb4886986df62f8db3c65859bb0d34c16658b40cc (diff)
Fix build break. Part of the change was not checked in last check-in somehow.
-rw-r--r--Source/Dafny/Translator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Dafny/Translator.cs b/Source/Dafny/Translator.cs
index 41076a65..9e08b2ce 100644
--- a/Source/Dafny/Translator.cs
+++ b/Source/Dafny/Translator.cs
@@ -4985,8 +4985,8 @@ namespace Microsoft.Dafny {
Contract.Assert(false); // unexpected CoCallResolution
goto case FunctionCallExpr.CoCallResolution.No; // please the compiler
}
- CheckCallTermination(expr.tok, contextDecreases, calleeDecreases, allowance, e.Receiver, substMap, etran, etran, builder,
- codeContext.InferredDecreases, hint);
+ CheckCallTermination(expr.tok, contextDecreases, calleeDecreases, allowance, e.Receiver, substMap, e.TypeArgumentSubstitutions,
+ etran, etran, builder, codeContext.InferredDecreases, hint);
}
}