Skip to content
Snippets Groups Projects
Commit 59df2412 authored by Karsten Rink's avatar Karsten Rink
Browse files

removed static keyword in friend def

parent fe21d349
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ class Element; ...@@ -36,7 +36,7 @@ class Element;
class Node : public GeoLib::PointWithID class Node : public GeoLib::PointWithID
{ {
/* friend functions: */ /* friend functions: */
friend static bool MeshLayerMapper::layerMapping(MeshLib::Mesh &mesh, const GeoLib::Raster &raster, double noDataReplacementValue); friend bool MeshLayerMapper::layerMapping(MeshLib::Mesh &mesh, const GeoLib::Raster &raster, double noDataReplacementValue);
friend MeshLib::Mesh* MeshSurfaceExtraction::getMeshSurface(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, bool keep3dMeshIds); friend MeshLib::Mesh* MeshSurfaceExtraction::getMeshSurface(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, bool keep3dMeshIds);
/* friend classes: */ /* friend classes: */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment