Skip to content

Commit d6b9d84

Browse files
authored
Merge pull request swiftlang#29471 from davezarzycki/pr29471
2 parents 1766f1f + 3c8fba0 commit d6b9d84

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

include/swift/AST/AnyRequest.h

+4
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ class AnyRequestBase {
145145
AnyRequestBase(const AnyRequestBase &other) {
146146
vtableAndKind = other.vtableAndKind;
147147
}
148+
AnyRequestBase &operator=(const AnyRequestBase &other) {
149+
vtableAndKind = other.vtableAndKind;
150+
return *this;
151+
}
148152

149153
private:
150154
Derived &asDerived() {

0 commit comments

Comments
 (0)