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 d2aef4b commit 5476740Copy full SHA for 5476740
include/swift/SIL/OSSALifetimeCompletion.h
@@ -172,4 +172,18 @@ class UnreachableLifetimeCompletion {
172
173
} // namespace swift
174
175
+inline llvm::raw_ostream &
176
+operator<<(llvm::raw_ostream &OS,
177
+ const swift::OSSALifetimeCompletion::Boundary &boundary) {
178
+ switch (boundary) {
179
+ case swift::OSSALifetimeCompletion::Boundary::Availability:
180
+ OS << "availability";
181
+ break;
182
+ case swift::OSSALifetimeCompletion::Boundary::Liveness:
183
+ OS << "liveness";
184
185
+ }
186
+ return OS;
187
+}
188
+
189
#endif
0 commit comments