From 9a929e8b6d9c9950d6e177cc348d73af6c1d7b87 Mon Sep 17 00:00:00 2001 From: heister Date: Mon, 9 Sep 2013 16:35:01 +0000 Subject: [PATCH] one more c++11 bugfix (thanks Ian Rose) git-svn-id: https://svn.dealii.org/trunk@30653 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/distributed/tria.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/source/distributed/tria.cc b/deal.II/source/distributed/tria.cc index 0a3129e289..1af0693130 100644 --- a/deal.II/source/distributed/tria.cc +++ b/deal.II/source/distributed/tria.cc @@ -3639,10 +3639,10 @@ namespace parallel for (; periodic_tuple(*periodic_tuple); - const cell_iterator second_cell=std::get<2>(*periodic_tuple); - const unsigned int face_right=std::get<3>(*periodic_tuple); - const unsigned int face_left=std::get<1>(*periodic_tuple); + const cell_iterator first_cell=std_cxx1x::get<0>(*periodic_tuple); + const cell_iterator second_cell=std_cxx1x::get<2>(*periodic_tuple); + const unsigned int face_right=std_cxx1x::get<3>(*periodic_tuple); + const unsigned int face_left=std_cxx1x::get<1>(*periodic_tuple); //respective cells of the matching faces in p4est const unsigned int tree_left -- 2.39.5