From 83b96e6a754a1b5c596b1b4df9081581dbfee6d7 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 3 Feb 2022 18:43:35 +0100 Subject: [PATCH] qualify move --- libsolutil/LinearExpression.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsolutil/LinearExpression.h b/libsolutil/LinearExpression.h index b4616e536..66b3a827d 100644 --- a/libsolutil/LinearExpression.h +++ b/libsolutil/LinearExpression.h @@ -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(); }