Skip to content
Snippets Groups Projects
Commit c49c2be4 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Comment unused function arguments.

parent 8d0a858c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
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