Skip to content
Snippets Groups Projects
Commit 23af8a5f authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL] fixed compiler warnings

parent 4b78a6f9
No related branches found
No related tags found
No related merge requests found
...@@ -57,8 +57,8 @@ public: ...@@ -57,8 +57,8 @@ public:
/// Computes the flux in the point \c p_local_coords that is given in local /// Computes the flux in the point \c p_local_coords that is given in local
/// coordinates using the values from \c local_x. /// coordinates using the values from \c local_x.
virtual std::vector<double> getFlux( virtual std::vector<double> getFlux(
MathLib::Point3d const& p_local_coords, MathLib::Point3d const& /*p_local_coords*/,
std::vector<double> const& local_x) const std::vector<double> const& /*local_x*/) const
{ {
return std::vector<double>(); return std::vector<double>();
} }
......
...@@ -103,9 +103,9 @@ public: ...@@ -103,9 +103,9 @@ public:
} }
// used as call back for CalculateSurfaceFlux process // used as call back for CalculateSurfaceFlux process
virtual std::vector<double> getFlux(std::size_t element_id, virtual std::vector<double> getFlux(std::size_t /*element_id*/,
MathLib::Point3d const& p, MathLib::Point3d const& /*p*/,
GlobalVector const&) const GlobalVector const& /*x*/) const
{ {
return std::vector<double>{}; return std::vector<double>{};
} }
......
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