Upgrade to Visual Studio 2015

This commit is contained in:
Zihan Chen
2016-10-03 00:07:28 -07:00
parent c1f4c64f51
commit 7670b918cd
68 changed files with 118 additions and 112 deletions
+1 -1
View File
@@ -2964,7 +2964,7 @@ WfRuntimeThreadContext (Operators)
CONTEXT_ACTION(PopValue(first), L"failed to pop a value from the stack.");
T firstValue = UnboxValue<T>(first);
T secondValue = UnboxValue<T>(second);
T value = exp(secondValue * log(firstValue));
T value = (T)exp(secondValue * log(firstValue));
context.PushValue(BoxValue(value));
return WfRuntimeExecutionAction::ExecuteInstruction;
}