Skip to content

Commit

Permalink
Repair typo semicolon in proper place
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Feb 11, 2024
1 parent 6ac438c commit 43c7cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/math/special_functions/gamma.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ inline T tgamma_small_upper_part(T a, T x, const Policy& pol, T* pgam = 0, bool
// Compute the full upper fraction (Q) when a is very small:
//

T result { boost::math::tgamma1pm1(a, pol); }
T result { boost::math::tgamma1pm1(a, pol) };

if(pgam)
*pgam = (result + 1) / a;
Expand Down

0 comments on commit 43c7cd7

Please sign in to comment.