Skip to content

Commit

Permalink
Workaround for GriddingAlgorithm fillData call
Browse files Browse the repository at this point in the history
  • Loading branch information
nselliott committed Mar 2, 2022
1 parent 7dcbe52 commit 8f51e05
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/SAMRAI/mesh/GriddingAlgorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3239,7 +3239,9 @@ GriddingAlgorithm::bufferTagsOnLevel(
hier::Box buf_box(*ic - buffer_size,
*ic + buffer_size,
tag_box_block_id);
boolean_tag_data->fill(tag_value, buf_box);
//TODO: check on this change
//boolean_tag_data->fill(tag_value, buf_box);
boolean_tag_data->getArrayData().fill(tag_value, buf_box);
}
}
#if defined(HAVE_RAJA)
Expand Down

0 comments on commit 8f51e05

Please sign in to comment.