Skip to content

Commit

Permalink
Add file change to check if this will trigger tests
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisb committed Aug 22, 2024
1 parent bbc1fb3 commit 4c18776
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/dem/visualization.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ Visualization<dim>::build_patches(
// Check to see if the property is a vector
if (components_number == dim)
{
vector_datasets.push_back(std::make_tuple(
vector_datasets.emplace_back(std::make_tuple(
field_position,
field_position + components_number - 1,
field_name,
DataComponentInterpretation::component_is_part_of_vector));
}
dataset_names.push_back(field_name);
dataset_names.emplace_back(field_name);
}

// Building the patch data
Expand Down

0 comments on commit 4c18776

Please sign in to comment.