From d3b01dc6dc900754ab4551691d47ba88d8e68d43 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 8 Jan 2002 18:03:38 +0000 Subject: [PATCH] Fix a missing std:: git-svn-id: https://svn.dealii.org/trunk@5356 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/multigrid/mg_dof_tools.h | 2 +- deal.II/deal.II/source/fe/fe_system.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/include/multigrid/mg_dof_tools.h b/deal.II/deal.II/include/multigrid/mg_dof_tools.h index 89070bed2c..d26a39fd05 100644 --- a/deal.II/deal.II/include/multigrid/mg_dof_tools.h +++ b/deal.II/deal.II/include/multigrid/mg_dof_tools.h @@ -164,7 +164,7 @@ class MGTools static void reinit_vector (const MGDoFHandler& mg_dof, MGLevelObject >& vector, - const vector& selected); + const std::vector& selected); }; diff --git a/deal.II/deal.II/source/fe/fe_system.cc b/deal.II/deal.II/source/fe/fe_system.cc index 85c1519e4c..ec9bb7ea96 100644 --- a/deal.II/deal.II/source/fe/fe_system.cc +++ b/deal.II/deal.II/source/fe/fe_system.cc @@ -1443,7 +1443,7 @@ bool FESystem::has_support_on_face (const unsigned int shape_index, const unsigned int face_index) const { - const pair component + const std::pair component = system_to_component_index(shape_index); const unsigned int base = component_to_base(component.first); return base_element(base).has_support_on_face(component.second, -- 2.39.5