From 3b56d9884ab67185300160e07e0f98d082912bc5 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 9 May 2024 01:01:47 +0000 Subject: [PATCH] Commit local hack to disable expression templates. --- p2p/source/decimal.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/p2p/source/decimal.hpp b/p2p/source/decimal.hpp index e297cb0e0..e9eb60a82 100644 --- a/p2p/source/decimal.hpp +++ b/p2p/source/decimal.hpp @@ -30,7 +30,11 @@ namespace orc { +#if 0 +using Decimal = boost::multiprecision::number, boost::multiprecision::et_off>; +#else typedef boost::multiprecision::cpp_dec_float_50 Decimal; +#endif }