Use std::move()

This commit is contained in:
Andreas Fabri 2023-04-06 12:30:01 +01:00
parent b9b1be1503
commit 47bfc83cba
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ public:
}
// std::cout << "m = " << m << " * 2^" << exp << std::endl;
// fmt(m);
man = Mantissa(m);
man = std::move(m);
}
friend std::ostream& operator<<(std::ostream& os, const cpp_float& m)