From: Wolfgang Bangerth Date: Tue, 20 Feb 2018 13:42:27 +0000 (-0700) Subject: Merge pull request #5930 from drwells/fix-unsigned-char X-Git-Tag: v9.0.0-rc1~412 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=795c938fa6330fa10de088d3b14ab1aef0c4c57a;p=dealii.git Merge pull request #5930 from drwells/fix-unsigned-char Use types::boundary_id in a code sample. --- 795c938fa6330fa10de088d3b14ab1aef0c4c57a diff --cc examples/step-38/doc/results.dox index 06b9bb8203,6bc5fbc2e4..51b3e2d3f6 --- a/examples/step-38/doc/results.dox +++ b/examples/step-38/doc/results.dox @@@ -119,10 -119,10 +119,10 @@@ void LaplaceBeltrami::make_gr Triangulation volume_mesh; GridGenerator::half_hyper_ball(volume_mesh); - volume_mesh.set_boundary (0, boundary_description); + volume_mesh.set_manifold (0, boundary_description); volume_mesh.refine_global (4); - std::set boundary_ids; + std::set boundary_ids; boundary_ids.insert (0); GridGenerator::extract_boundary_mesh (volume_mesh, triangulation,