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

llvm-svn: 217879
This commit is contained in:
Benjamin Kramer 2014-09-16 16:16:39 +00:00
parent 3175f49d33
commit 4be38d724f
1 changed files with 1 additions and 1 deletions

View File

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