We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
UnresolvedSetImpl
1 parent 19834b4 commit 0bcf34eCopy full SHA for 0bcf34e
clang/include/clang/AST/UnresolvedSet.h
@@ -71,9 +71,8 @@ class UnresolvedSetImpl {
71
UnresolvedSetImpl(const UnresolvedSetImpl &) = default;
72
UnresolvedSetImpl &operator=(const UnresolvedSetImpl &) = default;
73
74
- // FIXME: Switch these to "= default" once MSVC supports generating move ops
75
- UnresolvedSetImpl(UnresolvedSetImpl &&) {}
76
- UnresolvedSetImpl &operator=(UnresolvedSetImpl &&) { return *this; }
+ UnresolvedSetImpl(UnresolvedSetImpl &&) = default;
+ UnresolvedSetImpl &operator=(UnresolvedSetImpl &&) = default;
77
78
public:
79
// We don't currently support assignment through this iterator, so we might
0 commit comments