Skip to content

Commit

Permalink
Merge pull request #79 from cticenhour/std_make_unique
Browse files Browse the repository at this point in the history
Use std::make_unique in InterpolatedCoefficientLinear
  • Loading branch information
keniley1 authored Apr 22, 2022
2 parents afc5553 + fe78568 commit f84d6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/materials/InterpolatedCoefficientLinear.C
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ InterpolatedCoefficientLinear::InterpolatedCoefficientLinear(const InputParamete
mooseError("Unable to open file");

_coefficient_interpolation =
libmesh_make_unique<LinearInterpolation>(val_x, rate_coefficient, true);
std::make_unique<LinearInterpolation>(val_x, rate_coefficient, true);
}

void
Expand Down

0 comments on commit f84d6a6

Please sign in to comment.