Skip to content
Snippets Groups Projects
Commit af4e2b16 authored by David Blaikie's avatar David Blaikie
Browse files

Remove defaulted move ops, the type is zero-cost copyable anyway, so there's...

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
parent 053ebfe0
No related branches found
No related tags found
No related merge requests found
...@@ -61,9 +61,7 @@ private: ...@@ -61,9 +61,7 @@ private:
template <unsigned N> friend class UnresolvedSet; template <unsigned N> friend class UnresolvedSet;
UnresolvedSetImpl() = default; UnresolvedSetImpl() = default;
UnresolvedSetImpl(const UnresolvedSetImpl &) = default; UnresolvedSetImpl(const UnresolvedSetImpl &) = default;
UnresolvedSetImpl(UnresolvedSetImpl &&) = default;
UnresolvedSetImpl &operator=(const UnresolvedSetImpl &) = default; UnresolvedSetImpl &operator=(const UnresolvedSetImpl &) = default;
UnresolvedSetImpl &operator=(UnresolvedSetImpl &&) = default;
public: public:
// We don't currently support assignment through this iterator, so we might // We don't currently support assignment through this iterator, so we might
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment