From: wolf Date: Wed, 9 Jul 2003 00:16:35 +0000 (+0000) Subject: Work around a problem with earlier versions of gcc. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b528b7e3e5ca6d04b96e86bc7761a608d8c252f;p=dealii-svn.git Work around a problem with earlier versions of gcc. git-svn-id: https://svn.dealii.org/trunk@7863 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;