Skip to content

[ProcessLib] Make consistency of the type of dof_tables argument

wenqing requested to merge wenqing/ogs:dof_arg_type_ref_to_pointer into master

For the argument dof_tables in some member functions of the classes of ProcessLib, its type is not unique. There are two types for this argument:

  • std::vector<std::reference_wrapper<NumLib::LocalToGlobalIndexMap>> const&
  • std::vector<NumLib::LocalToGlobalIndexMap const*> const&

This MR standardizes the type of dof_tables argument to std::vector<NumLib::LocalToGlobalIndexMap const*> const&.

  1. Feature description was added to the changelog
  2. Tests covering your feature were added?
  3. Any new feature or behaviour change was documented?

Merge request reports