Skip to content

Commit af02ec6

Browse files
committed
Add missing fem:: declaration
1 parent 187d0b5 commit af02ec6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/demo/mixed_poisson/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ int main(int argc, char* argv[])
271271
// (applied on the `ds(1)` in the UFL file). First we get facet data
272272
// integration data for facets in dfacets.
273273
std::vector<std::int32_t> domains = fem::compute_integration_domains(
274-
IntegralType(1, 1), *mesh->topology(), dfacets);
274+
fem::IntegralType(1, 1), *mesh->topology(), dfacets);
275275

276276
// Create data structure for the `ds(1)` integration domain in form
277277
// (see the UFL file). It is for en exterior facet integral (the key
@@ -281,7 +281,7 @@ int main(int argc, char* argv[])
281281
std::map<
282282
std::int32_t,
283283
std::vector<std::pair<std::int32_t, std::span<const std::int32_t>>>>
284-
subdomain_data{{IntegralType(1, 1), {{1, domains}}}};
284+
subdomain_data{{fem::IntegralType(1, 1), {{1, domains}}}};
285285

286286
// Since we are doing a `ds(1)` integral on mesh and `u0` is defined
287287
// on the `submesh`, our form involves more than one mesh. The mesh

0 commit comments

Comments
 (0)