From cd142eacb8329703315e07e7df7d2459a49537e9 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 27 Jul 2019 12:01:06 +0100 Subject: [PATCH] Add missing using declaration to test case. [CI SKIP] --- test/test_pFq.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_pFq.hpp b/test/test_pFq.hpp index 19504feeb..c875d1897 100644 --- a/test/test_pFq.hpp +++ b/test/test_pFq.hpp @@ -104,6 +104,8 @@ void check_pFq_result(const T& result, const T& norm, const T& expect, const std template void test_spots_1F0(T, const char*) { + using std::pow; + T tolerance = boost::math::tools::epsilon() * 1000; BOOST_CHECK_CLOSE(boost::math::hypergeometric_pFq({ T(-3) }, {}, T(2)), T(-1), tolerance);