Add std:: qualifier to move() calls

This commit is contained in:
Marenz
2022-08-30 11:12:15 +02:00
parent 19e3c7339e
commit f7cc29bec1
111 changed files with 362 additions and 362 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ evmc::VM& EVMHost::getVM(string const& _path)
if (vm && errorCode == EVMC_LOADER_SUCCESS)
{
if (vm.get_capabilities() & (EVMC_CAPABILITY_EVM1 | EVMC_CAPABILITY_EWASM))
vms[_path] = make_unique<evmc::VM>(evmc::VM(move(vm)));
vms[_path] = make_unique<evmc::VM>(evmc::VM(std::move(vm)));
else
cerr << "VM loaded neither supports EVM1 nor EWASM" << endl;
}