Skip to content

Commit

Permalink
Merge pull request #13133 from permcody/gcc_8x_fix
Browse files Browse the repository at this point in the history
Fix another GCC 8_x issue
  • Loading branch information
lindsayad committed Mar 27, 2019
2 parents 5dc558b + ee2759d commit c2e6dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/porous_flow/src/kernels/PorousFlowDarcyBase.C
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ PorousFlowDarcyBase::harmonicMean(JacRes res_or_jac, unsigned int ph, unsigned i

std::vector<Real> mob(num_nodes);
unsigned num_zero = 0;
unsigned zero_mobility_node;
unsigned zero_mobility_node = std::numeric_limits<unsigned>::max();
Real harmonic_mob = 0;
for (unsigned n = 0; n < num_nodes; ++n)
{
Expand Down

0 comments on commit c2e6dba

Please sign in to comment.