2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Fix case of header name, fix C++11 requirement on one test.

This commit is contained in:
jzmaddock
2020-07-06 08:21:45 +01:00
parent b670912bc5
commit f18e4c4f84
2 changed files with 4 additions and 2 deletions

View File

@@ -199,7 +199,9 @@ install generate_test_values_install : generate_test_values : <location>bin ;
exe igamma_temme_large_coef : igamma_temme_large_coef.cpp ; exe igamma_temme_large_coef : igamma_temme_large_coef.cpp ;
install igamma_temme_large_coef_install : igamma_temme_large_coef : <location>bin ; install igamma_temme_large_coef_install : igamma_temme_large_coef : <location>bin ;
exe lanczos_generator : lanczos_generator.cpp ../../chrono/build//boost_chrono ../../system/build//boost_system : [ check-target-builds ../../multiprecision/config//has_float128 : <source>quadmath : <build>no ] ; exe lanczos_generator : lanczos_generator.cpp ../../chrono/build//boost_chrono ../../system/build//boost_system :
[ check-target-builds ../../multiprecision/config//has_float128 : <source>quadmath : <build>no ]
[ requires cxx11_nullptr ] ;
install lanczos_generator_install : lanczos_generator : <location>bin ; install lanczos_generator_install : lanczos_generator : <location>bin ;
exe factorial_tables : factorial_tables.cpp ; exe factorial_tables : factorial_tables.cpp ;

View File

@@ -4,7 +4,7 @@
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include "mp_t.hpp" #include "mp_t.hpp"
#include <boost/math/special_functions/hypergeometric_2f0.hpp> #include <boost/math/special_functions/hypergeometric_2F0.hpp>
#include <boost/math/constants/constants.hpp> #include <boost/math/constants/constants.hpp>
#include <boost/lexical_cast.hpp> #include <boost/lexical_cast.hpp>
#include <fstream> #include <fstream>