make function inline to avoid multiple definition error

release/4.3a0
Varun Agrawal 2024-10-26 18:08:10 -04:00
parent 23d28b64dc
commit e7dea39562
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ namespace internal {
* @param alpha Quantile value
* @return double
*/
double chi_squared_quantile(const double dofs, const double alpha) {
inline double chi_squared_quantile(const double dofs, const double alpha) {
return 2 * igami(dofs / 2, alpha);
}