Remove std::move of trivially-copyable type.

Address ClangTidy finding:

* std::move of the expression of the trivially-copyable type 'mlir::Module' (aka 'mlir::ModuleOp') has no effect; remove std::move()

PiperOrigin-RevId: 256981849
This commit is contained in:
Jacques Pienaar 2019-07-08 08:19:19 -07:00 committed by jpienaar
parent 3898e100c8
commit 01d042a123
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ public:
return nullptr;
}
return std::move(theModule);
return theModule;
}
private: