From 2522f8bea49d41ad75f6c0729f46c517239b6e1b Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Thu, 17 Mar 2016 20:45:38 +0000 Subject: [PATCH] Re-add (user defined) move ops to UnresolvedSetImpl to allow UnresolvedSet to be implicitly movable llvm-svn: 263747 --- clang/include/clang/AST/UnresolvedSet.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clang/include/clang/AST/UnresolvedSet.h b/clang/include/clang/AST/UnresolvedSet.h index 672ec44..c1be2aa 100644 --- a/clang/include/clang/AST/UnresolvedSet.h +++ b/clang/include/clang/AST/UnresolvedSet.h @@ -63,6 +63,10 @@ private: UnresolvedSetImpl(const UnresolvedSetImpl &) = default; UnresolvedSetImpl &operator=(const UnresolvedSetImpl &) = default; + // FIXME: Switch these to "= default" once MSVC supports generating move ops + UnresolvedSetImpl(UnresolvedSetImpl &&) {} + UnresolvedSetImpl &operator=(UnresolvedSetImpl &&) { return *this; } + public: // We don't currently support assignment through this iterator, so we might // as well use the same implementation twice. -- 2.7.4