Skip to content

Commit

Permalink
Update test_compile_test_and_run.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos authored Feb 14, 2024
1 parent 979a8d9 commit 3e1ca6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_compile_test_and_run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
#include <boost/core/lightweight_test.hpp>
#include <boost/cstdfloat.hpp>

#if !defined(__CYGWIN__)
#if (!defined(__CYGWIN__) && !defined(BOOST_MATH_NO_DISTRIBUTION_CONCEPT_TESTS))
#include "compile_test/instantiate.hpp"
#endif

namespace local
{
auto instantiate_runner() -> void
{
#if (defined(BOOST_FLOAT64_C) && !defined(__CYGWIN__))
#if (defined(BOOST_FLOAT64_C) && !defined(__CYGWIN__) && !defined(BOOST_MATH_NO_DISTRIBUTION_CONCEPT_TESTS))

instantiate(static_cast<boost::float64_t>(BOOST_FLOAT64_C(1.23)));

Expand Down

0 comments on commit 3e1ca6c

Please sign in to comment.