summaryrefslogtreecommitdiffstats
path: root/include/clang/AST/UnresolvedSet.h
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2016-03-17 18:28:16 +0000
committerDavid Blaikie <dblaikie@gmail.com>2016-03-17 18:28:16 +0000
commitaf4e2b1652d0704a3e10bbbc39bc5fcdb5f988ca (patch)
tree87c5ba1742561ffe5498b1331469f53facc4cbdb /include/clang/AST/UnresolvedSet.h
parent053ebfe0e764b6ed5c00d1734ba77e9f94c37770 (diff)
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
Diffstat (limited to 'include/clang/AST/UnresolvedSet.h')
-rw-r--r--include/clang/AST/UnresolvedSet.h2
1 files changed, 0 insertions, 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 <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