Remove defaulted move ops, the type is zero-cost copyable anyway, so there's no need...
authorDavid Blaikie <dblaikie@gmail.com>
Thu, 17 Mar 2016 18:28:16 +0000 (18:28 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 17 Mar 2016 18:28:16 +0000 (18:28 +0000)
(addresses MSVC build error, since MSVC 2013 can't generate default move
ops)

llvm-svn: 263732

clang/include/clang/AST/UnresolvedSet.h

index 12c825e..672ec44 100644 (file)
@@ -61,9 +61,7 @@ private:
   template <unsigned N> friend class UnresolvedSet;
   UnresolvedSetImpl() = default;
   UnresolvedSetImpl(const UnresolvedSetImpl &) = default;
-  UnresolvedSetImpl(UnresolvedSetImpl &&) = default;
   UnresolvedSetImpl &operator=(const UnresolvedSetImpl &) = default;
-  UnresolvedSetImpl &operator=(UnresolvedSetImpl &&) = default;
 
 public:
   // We don't currently support assignment through this iterator, so we might