From: bangerth Date: Fri, 12 Nov 2010 15:45:59 +0000 (+0000) Subject: Work around a compile problem in the compiler on our test machine. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32c062bf960d1266dcb6e022f81faa89f82f257c;p=dealii-svn.git Work around a compile problem in the compiler on our test machine. git-svn-id: https://svn.dealii.org/trunk@22707 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/dofs/dof_accessor.h b/deal.II/include/deal.II/dofs/dof_accessor.h index 0c6f20e737..eb7339ab4c 100644 --- a/deal.II/include/deal.II/dofs/dof_accessor.h +++ b/deal.II/include/deal.II/dofs/dof_accessor.h @@ -1023,7 +1023,7 @@ class DoFAccessor<0,DH<1,spacedim> > : public TriaAccessor<0,1,spacedim> * as last argument. */ void get_dof_indices (std::vector &dof_indices, - const unsigned int fe_index = DH<1,spacedim>::default_fe_index) const; + const unsigned int fe_index = AccessorData::default_fe_index) const; /** * Global DoF index of the i @@ -1063,7 +1063,7 @@ class DoFAccessor<0,DH<1,spacedim> > : public TriaAccessor<0,1,spacedim> */ unsigned int vertex_dof_index (const unsigned int vertex, const unsigned int i, - const unsigned int fe_index = DH<1,spacedim>::default_fe_index) const; + const unsigned int fe_index = AccessorData::default_fe_index) const; /** * Index of the ith degree @@ -1101,7 +1101,7 @@ class DoFAccessor<0,DH<1,spacedim> > : public TriaAccessor<0,1,spacedim> * active_fe_index(). */ unsigned int dof_index (const unsigned int i, - const unsigned int fe_index = DH<1,spacedim>::default_fe_index) const; + const unsigned int fe_index = AccessorData::default_fe_index) const; /** * @} @@ -1289,7 +1289,7 @@ class DoFAccessor<0,DH<1,spacedim> > : public TriaAccessor<0,1,spacedim> */ void set_dof_index (const unsigned int i, const unsigned int index, - const unsigned int fe_index = DH<1,spacedim>::default_fe_index) const; + const unsigned int fe_index = AccessorData::default_fe_index) const; /** * Set the global index of the i @@ -1330,7 +1330,7 @@ class DoFAccessor<0,DH<1,spacedim> > : public TriaAccessor<0,1,spacedim> void set_vertex_dof_index (const unsigned int vertex, const unsigned int i, const unsigned int index, - const unsigned int fe_index = DH<1,spacedim>::default_fe_index) const; + const unsigned int fe_index = AccessorData::default_fe_index) const; /** * Iterator classes need to be friends