Skip to content

Commit a3264f6

Browse files
authored
Merge pull request #19301 from compnerd/ast-special-copy
2 parents 72c5367 + d9aaaed commit a3264f6

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

include/swift/AST/AnyRequest.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,6 @@ class AnyRequest {
158158
return *this;
159159
}
160160

161-
AnyRequest(AnyRequest &other)
162-
: storageKind(other.storageKind), stored(other.stored) { }
163-
164-
AnyRequest(const AnyRequest &&other)
165-
: storageKind(other.storageKind), stored(other.stored) { }
166-
167161
// Create a local template typename `ValueType` in the template specialization
168162
// so that we can refer to it in the SFINAE condition as well as the body of
169163
// the template itself. The SFINAE condition allows us to remove this

0 commit comments

Comments
 (0)