Fix an MSVC build break since it can't synthesize move ctors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243792 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie 2015-07-31 21:47:07 +00:00
parent d79f0dd3d4
commit 7c24e4d3c5
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ private:
struct LogicalModule {
// Make this move-only to ensure they don't get duplicated across moves of
// LogicalDylib or anything like that.
LogicalModule(LogicalModule &&) = default;
LogicalModule(LogicalModule &&RHS)
: Resources(std::move(RHS.Resources)),
BaseLayerHandles(std::move(RHS.BaseLayerHandles)) {}
LogicalModule() = default;
LogicalModuleResources Resources;
BaseLayerHandleList BaseLayerHandles;