Spell out a move ctor. Even the 2013 vintage of MSVC cannot synthesize move ctors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2014-09-16 16:16:39 +00:00
parent a9478c4a96
commit 8be86aaf82

View File

@ -51,7 +51,7 @@ public:
return *this;
}
#else
AllocaHolder(AllocaHolder &&RHS) = default;
AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
#endif
~AllocaHolder() {