From 855d9cd68065ef2827c59dbfb6670eb02fba48c2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 27 Mar 2016 21:11:18 -0500 Subject: [PATCH] Fix compilation after the previous commit. --- include/deal.II/grid/manifold.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/grid/manifold.h b/include/deal.II/grid/manifold.h index a902725eba..f2af762e55 100644 --- a/include/deal.II/grid/manifold.h +++ b/include/deal.II/grid/manifold.h @@ -911,8 +911,8 @@ namespace Manifolds get_default_quadrature(const MeshIteratorType &iterator, const bool with_laplace) { - const int spacedim = OBJECT::AccessorType::space_dimension; - const int dim = OBJECT::AccessorType::structure_dimension; + const int spacedim = MeshIteratorType::AccessorType::space_dimension; + const int dim = MeshIteratorType::AccessorType::structure_dimension; std::vector > sp; std::vector wp; -- 2.39.5