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.
1 parent d57a38b commit a99aebbCopy full SHA for a99aebb
include/swift/Sema/SolutionResult.h
@@ -76,8 +76,10 @@ class SolutionResult {
76
SolutionResult(const SolutionResult &other) = delete;
77
78
SolutionResult(SolutionResult &&other)
79
- : kind(other.kind), numSolutions(other.numSolutions),
80
- solutions(other.solutions) {
+ : kind(other.kind),
+ numSolutions(other.numSolutions),
81
+ solutions(other.solutions),
82
+ TooComplexAt(other.TooComplexAt) {
83
emittedDiagnostic = false;
84
other.kind = Error;
85
other.numSolutions = 0;
0 commit comments