qualify move

This commit is contained in:
chriseth 2022-02-03 18:43:35 +01:00
parent 6c2b686c0c
commit 83b96e6a75

View File

@ -51,7 +51,7 @@ public:
{
LinearExpression result;
result.resize(_index + 1);
result[_index] = move(_factor);
result[_index] = std::move(_factor);
return result;
}
@ -79,7 +79,7 @@ public:
rational const& front() const { return factors.front(); }
void push_back(rational _value) { factors.push_back(move(_value)); }
void push_back(rational _value) { factors.push_back(std::move(_value)); }
size_t size() const { return factors.size(); }