From: Simon Sticko Date: Wed, 16 Feb 2022 14:42:12 +0000 (+0100) Subject: Minor cleanup to test of non_matching::FEValues X-Git-Tag: v9.4.0-rc1~482^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13398%2Fhead;p=dealii.git Minor cleanup to test of non_matching::FEValues --- diff --git a/tests/non_matching/fe_values.cc b/tests/non_matching/fe_values.cc index 0e15ab086f..9ae268beea 100644 --- a/tests/non_matching/fe_values.cc +++ b/tests/non_matching/fe_values.cc @@ -67,9 +67,10 @@ assert_doesnt_have_value(const std_cxx17::optional &fe_values) // Test the following: // 1. That we can construct a NonMatching::FEValues object. // 2. That when we call reinit on each cell in the triangulation, -// the boost::optionals that we get from get_inside/outside/surface_fe_values -// are set up correctly. That is, the optionals that should contain a value do -// and the ones that should not contain a value do not. +// the std_cxx17::optionals that we get from +// get_inside/outside/surface_fe_values are set up correctly. That is, the +// optionals that should contain a value do and the ones that should not contain +// a value do not. template class Test { @@ -94,7 +95,7 @@ private: Triangulation triangulation; hp::FECollection fe_collection; - hp::DoFHandler dof_handler; + DoFHandler dof_handler; hp::MappingCollection mapping_collection; hp::QCollection q_collection;