From c49c2be4b330f825a6b2ceaefe9e8ce7c667dfc5 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Tue, 4 Oct 2016 10:07:44 +0200 Subject: [PATCH] [PL] Comment unused function arguments. --- .../CalculateSurfaceFlux/MapBulkElementPoint.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ProcessLib/CalculateSurfaceFlux/MapBulkElementPoint.cpp b/ProcessLib/CalculateSurfaceFlux/MapBulkElementPoint.cpp index 88ee57a121c..e179cddcec2 100644 --- a/ProcessLib/CalculateSurfaceFlux/MapBulkElementPoint.cpp +++ b/ProcessLib/CalculateSurfaceFlux/MapBulkElementPoint.cpp @@ -13,7 +13,7 @@ namespace ProcessLib { -MathLib::Point3d getBulkElementPoint(MeshLib::Quad const& quad, +MathLib::Point3d getBulkElementPoint(MeshLib::Quad const& /*quad*/, std::size_t const face_id, MathLib::WeightedPoint1D const& wp) { @@ -31,7 +31,7 @@ MathLib::Point3d getBulkElementPoint(MeshLib::Quad const& quad, } } -MathLib::Point3d getBulkElementPoint(MeshLib::Hex const& hex, +MathLib::Point3d getBulkElementPoint(MeshLib::Hex const& /*hex*/, std::size_t const face_id, MathLib::WeightedPoint2D const& wp) { @@ -89,10 +89,10 @@ MathLib::Point3d getBulkElementPoint(MeshLib::Mesh const& mesh, } // TODO disable the 3d elements in the local assembler creator -MathLib::Point3d getBulkElementPoint(MeshLib::Mesh const& mesh, - std::size_t bulk_element_id, - std::size_t bulk_face_id, - MathLib::WeightedPoint3D const& wp) +MathLib::Point3d getBulkElementPoint(MeshLib::Mesh const& /*mesh*/, + std::size_t /*bulk_element_id*/, + std::size_t /*bulk_face_id*/, + MathLib::WeightedPoint3D const& /*wp*/) { return MathLib::ORIGIN; } -- GitLab