Skip to content

Commit

Permalink
Fixed warnings which slipped in with ufz#2487.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed May 16, 2019
1 parent b48994a commit d76c0c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ProcessLib/HT/MonolithicHTFEM.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class MonolithicHTFEM
{
}

void assemble(double const t, std::vector<double> const& local_x,
void assemble(double const /*t*/, std::vector<double> const& local_x,
std::vector<double>& local_M_data,
std::vector<double>& local_K_data,
std::vector<double>& local_b_data) override
Expand Down
2 changes: 1 addition & 1 deletion ProcessLib/HT/StaggeredHTFEM-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ void StaggeredHTFEM<ShapeFunction, IntegrationMethod, GlobalDim>::
template <typename ShapeFunction, typename IntegrationMethod,
unsigned GlobalDim>
void StaggeredHTFEM<ShapeFunction, IntegrationMethod, GlobalDim>::
assembleHeatTransportEquation(double const t,
assembleHeatTransportEquation(double const /*t*/,
std::vector<double>& local_M_data,
std::vector<double>& local_K_data,
std::vector<double>& /*local_b_data*/,
Expand Down

0 comments on commit d76c0c5

Please sign in to comment.