mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-02-20 02:42:26 +00:00
Allow mixed arithmetic between two different expression templates. Change docs to indicate mixed arithmetic is allowed and rebuild. [SVN r80397]
18 lines
475 B
C++
18 lines
475 B
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Copyright 2012 John Maddock. Distributed under the Boost
|
|
// Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include <boost/multiprecision/cpp_dec_float.hpp>
|
|
|
|
using namespace boost::multiprecision;
|
|
|
|
int main()
|
|
{
|
|
number<cpp_dec_float<50>, true> a(2);
|
|
number<cpp_dec_float<50>, false> b(2);
|
|
|
|
a = a + b;
|
|
}
|
|
|