static void
map_support_points_to_dofs (const Mapping<DH::dimension> &mapping,
const DH &dof_handler,
- std::map<Point<dim>, unsigned int, Comp> &point_to_index_map);
+ std::map<Point<DH::dimension>, unsigned int, Comp> &point_to_index_map);
/**
* Map a coupling table from the
DoFTools::map_support_points_to_dofs (
const Mapping<DH::dimension> &mapping,
const DH &dof_handler,
- std::map<Point<dim>, unsigned int, Comp> &point_to_index_map)
+ std::map<Point<DH::dimension>, unsigned int, Comp> &point_to_index_map)
{
// let the checking of arguments be
// done by the function first
// called
- std::vector<Point<dim> > support_points (dof_handler.n_dofs());
+ std::vector<Point<DH::dimension> > support_points (dof_handler.n_dofs());
map_dofs_to_support_points (mapping, dof_handler, support_points);
// now copy over the results of the
// previous function into the