]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/math/distributions/inverse_gamma.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / math / distributions / inverse_gamma.hpp
index fa5d357ac77c8ed6581a0ed384a8a5c751b1baa8..9266bc22f6ea3b49109b7dbd88bbe3ee5b2de34e 100644 (file)
@@ -122,6 +122,13 @@ typedef inverse_gamma_distribution<double> inverse_gamma;
 // but there is a typedef for gamma
 //   typedef boost::math::gamma_distribution<Type, Policy> gamma;
 
+#ifdef __cpp_deduction_guides
+template <class RealType>
+inverse_gamma_distribution(RealType)->inverse_gamma_distribution<typename boost::math::tools::promote_args<RealType>::type>;
+template <class RealType>
+inverse_gamma_distribution(RealType,RealType)->inverse_gamma_distribution<typename boost::math::tools::promote_args<RealType>::type>;
+#endif
+
 // Allow random variable x to be zero, treated as a special case (unlike some definitions).
 
 template <class RealType, class Policy>