From af4e2b1652d0704a3e10bbbc39bc5fcdb5f988ca Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Thu, 17 Mar 2016 18:28:16 +0000 Subject: [PATCH] Remove defaulted move ops, the type is zero-cost copyable anyway, so there's no need for specific move ops (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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/clang/AST/UnresolvedSet.h b/include/clang/AST/UnresolvedSet.h index 12c825e434..672ec4433d 100644 --- a/include/clang/AST/UnresolvedSet.h +++ b/include/clang/AST/UnresolvedSet.h @@ -61,9 +61,7 @@ private: template 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 -- 2.40.0