]> granicus.if.org Git - clang/commitdiff
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)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263732 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/UnresolvedSet.h

index 12c825e434e582256ab392b36cbe0d9317b1ecae..672ec4433d7d3d762b417a43f3866c2c7f899b7a 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