2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-22 03:22:28 +00:00

special_fun now passes in standalone mode

This commit is contained in:
Matt Borland
2021-03-25 20:50:13 +03:00
parent 0dff971b32
commit a80edc889c
18 changed files with 143 additions and 145 deletions

View File

@@ -11,6 +11,10 @@
# define BOOST_MATH_ASSERT_UNDEFINED_POLICY false
#endif
#include <boost/math/tools/config.hpp>
#ifndef BOOST_MATH_NO_DISTRIBUTION_CONCEPT_TESTS
#include <boost/math/distributions.hpp>
#include <boost/math/special_functions.hpp>
@@ -1559,5 +1563,14 @@ void instantiate_mixed(RealType)
#endif
}
#else // Standalone mode
template <typename T>
void instantiate(T) {}
template <typename T>
void instantiate_mixed(T) {}
#endif // Standalone mode
#endif // BOOST_LIBS_MATH_TEST_INSTANTIATE_HPP