Skip to content

Commit

Permalink
[A/IO/FEFLOW] MeshInterface: const correctness.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomFischer committed May 28, 2020
1 parent bd4ee2e commit 3b5ee01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Applications/FileIO/FEFLOW/FEFLOWMeshInterface.cpp
Expand Up @@ -312,7 +312,7 @@ void FEFLOWMeshInterface::readNodeCoordinates(

void FEFLOWMeshInterface::readNodeCoordinates(
std::ifstream& in, const FEM_CLASS& fem_class, const FEM_DIM& fem_dim,
std::vector<MeshLib::Node*>& vec_nodes)
std::vector<MeshLib::Node*> const& vec_nodes)
{
const std::size_t no_nodes_per_layer =
(fem_class.dimension == 2)
Expand Down
2 changes: 1 addition & 1 deletion Applications/FileIO/FEFLOW/FEFLOWMeshInterface.h
Expand Up @@ -99,7 +99,7 @@ class FEFLOWMeshInterface
void readNodeCoordinates(std::ifstream& in,
const FEM_CLASS& fem_class,
const FEM_DIM& fem_dim,
std::vector<MeshLib::Node*>& nodes);
std::vector<MeshLib::Node*> const& nodes);

/// read elevation data
void readElevation(std::ifstream& in,
Expand Down

0 comments on commit 3b5ee01

Please sign in to comment.