[COFF] Fix -Wredundant-move

This commit is contained in:
Benjamin Kramer 2022-06-03 17:39:08 +02:00
parent bb94611d65
commit 3a252806f4
1 changed files with 1 additions and 1 deletions

View File

@ -786,7 +786,7 @@ static Error ignoreStrippedErrors(Error E) {
consumeError(std::move(E));
return Error::success();
}
return std::move(E);
return E;
}
Error COFFObjectFile::initialize() {