Skip to content

Commit f84d6a6

Browse files
authored
Merge pull request #79 from cticenhour/std_make_unique
Use std::make_unique in InterpolatedCoefficientLinear
2 parents afc5553 + fe78568 commit f84d6a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/materials/InterpolatedCoefficientLinear.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ InterpolatedCoefficientLinear::InterpolatedCoefficientLinear(const InputParamete
7070
mooseError("Unable to open file");
7171

7272
_coefficient_interpolation =
73-
libmesh_make_unique<LinearInterpolation>(val_x, rate_coefficient, true);
73+
std::make_unique<LinearInterpolation>(val_x, rate_coefficient, true);
7474
}
7575

7676
void

0 commit comments

Comments
 (0)