Skip to content

Commit

Permalink
Another compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Jun 26, 2024
1 parent 19f6638 commit 7cb74d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/realizations/coastal/CoastalFormulation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class CoastalFormulation : public data_access::DataProvider<double, MeshPointsSe

size_t selected_points_count(const selection_type& selector)
{
auto* points = boost::get<std::vector<int>>(selector.points);
auto* points = boost::get<std::vector<int>>(&selector.points);
size_t size = points ? points->size() : this->mesh_size(selector.variable_name);
return size;
}
Expand Down

0 comments on commit 7cb74d7

Please sign in to comment.