Skip to content

Commit

Permalink
Repair remaining typos in instantiate.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Feb 13, 2024
1 parent c701800 commit 5ba4e9d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions test/compile_test/instantiate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1489,11 +1489,14 @@ void instantiate_mixed(RealType)

boost::math::policies::policy<> pol;


boost::math::tgamma(i, pol);
boost::math::tgamma1pm1(i, pol);
boost::math::lgamma(i, pol);
boost::math::lgamma(i, &i_other, pol);
{
int i_other { i };

boost::math::lgamma(i, &i_other, pol);
}
boost::math::digamma(i, pol);
boost::math::trigamma(i, pol);
boost::math::polygamma(i, i, pol);
Expand Down Expand Up @@ -1657,7 +1660,11 @@ void instantiate_mixed(RealType)
test::tgamma(i);
test::tgamma1pm1(i);
test::lgamma(i);
test::lgamma(i, &i_other);
{
int i_other { i };

test::lgamma(i, &i_other);
}
test::digamma(i);
test::trigamma(i);
test::polygamma(i, i);
Expand Down

0 comments on commit 5ba4e9d

Please sign in to comment.