Remove 'uninitialized variable' warning.

This commit is contained in:
Dave Pugmire 2016-11-07 15:07:03 -05:00
parent 80df759238
commit 2975b03a53

@ -742,7 +742,7 @@ class SamplerCellAssocRect : public vtkm::worklet::WorkletMapField
|/ |/ |/
0----------1 |__ x
*/
vtkm::Vec<vtkm::Float32,3> bottomLeft;
vtkm::Vec<vtkm::Float32,3> bottomLeft(0,0,0);
bool newCell = true;
//check to see if we left the cell
vtkm::Float32 tx = 0.f;