From bf8cebfc15b2d9dbf965ce604f61adc58078d726 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 9 Jul 2003 00:16:35 +0000 Subject: [PATCH] Work around a problem with earlier versions of gcc. git-svn-id: https://svn.dealii.org/trunk@7863 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_tools.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/source/fe/fe_tools.cc b/deal.II/deal.II/source/fe/fe_tools.cc index b8e00b9b12..81ceaebc0b 100644 --- a/deal.II/deal.II/source/fe/fe_tools.cc +++ b/deal.II/deal.II/source/fe/fe_tools.cc @@ -1209,8 +1209,8 @@ FETools::get_fe_from_name_aux (const std::string &name) // present position // to the end const std::pair *, unsigned int> tmp_x - = FETools::get_fe_from_name_aux (std::string(name.begin()+position, - name.end())); + = get_fe_from_name_aux (std::string(name.begin()+position, + name.end())); base_fes.push_back (tmp_x.first); position += tmp_x.second; -- 2.39.5