Fix -Wpessimizing-move error, NFC

llvm-svn: 279095
This commit is contained in:
Vedant Kumar 2016-08-18 17:39:53 +00:00
parent 12a4105647
commit c948d182e1
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ private:
CVTypeVisitor Visitor(Deserializer);
if (auto EC = Visitor.visitFieldListMemberStream(Record.Data))
return std::move(EC);
return EC;
return Error::success();
}