Fix a typo in mehtod name, and missing argument.

This commit is contained in:
Dave Pugmire 2015-12-24 11:19:51 -05:00
parent ee93ce4258
commit d0934e0672

@ -74,8 +74,8 @@ public:
vtkm::Id GetNumberOfValues() const
{
return this->PortalFirst.GetNumberOfValues() *
this->PortalSecond.GetNumberOfValue() *
this->PortalThird.GetNumberOfValue();
this->PortalSecond.GetNumberOfValues() *
this->PortalThird.GetNumberOfValues();
}
VTKM_EXEC_EXPORT
@ -397,7 +397,8 @@ public:
VTKM_CONT_EXPORT
PortalConstExecution PrepareForInput(bool vtkmNotUsed(updateData)) {
return PortalConstExecution(this->FirstArray.PrepareForInput(Device()),
this->SecondArray.PrepareForInput(Device()));
this->SecondArray.PrepareForInput(Device()),
this->ThirdArray.PrepareForInput(Device()));
}
VTKM_CONT_EXPORT