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

Merge pull request #597 from mborland/standalone

Complete Standalone Mode
This commit is contained in:
jzmaddock
2021-04-04 17:35:10 +01:00
committed by GitHub
68 changed files with 499 additions and 113 deletions

View File

@@ -179,8 +179,7 @@ As one would expect, the variable can be `const` (but sadly [*not yet `constexpr
// constexpr cpp_bin_float_50 seventh_constexpr (cpp_bin_float_50(1) / 7);
// std::cout << "seventh_constexpr = " << seventh_constexpr << std::endl; //
// nor use the macro BOOST_CONSTEXPR_OR_CONST unless it returns `const`
// BOOST_CONSTEXPR_OR_CONST cpp_bin_float_50 seventh_constexpr(seventh_const);
// constexpr cpp_bin_float_50 seventh_constexpr(seventh_const);
//] [/big_seventh_example_constexpr

View File

@@ -14,7 +14,7 @@
#include <iostream>
#include <iomanip>
#if defined(BOOST_INTEL)
#if defined(__INTEL_COMPILER)
# pragma warning(disable:239)
# pragma warning(disable:264)
#endif