From 1d5f57ebb7f4b8251c8c9d5b700368877af3fb5c Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 6 Apr 2023 15:53:43 +0100 Subject: [PATCH] 256 -> 512 and no need for std::move() --- Number_types/include/CGAL/cpp_float.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 0060c3a7e11..5c121796d3b 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -64,7 +64,7 @@ class cpp_float { boost::multiprecision::cpp_rational rat; #endif - typedef boost::multiprecision::number > Mantissa; + typedef boost::multiprecision::number > Mantissa; Mantissa man; int exp; /* The number man (an integer) * 2 ^ exp */ @@ -169,7 +169,7 @@ public: } // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); - man = std::move(m); + man = m; } friend std::ostream& operator<<(std::ostream& os, const cpp_float& m)