File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -265,8 +265,8 @@ class SwiftDispatcher {
265
265
bool fetchLabelFromUnionCase (const llvm::PointerUnion<Ts...> u, TrapLabel<Tag>& output) {
266
266
// we rely on the fact that when we extract `ASTNode` instances (which only happens
267
267
// on `BraceStmt` elements), we cannot encounter a standalone `TypeRepr` there, so we skip
268
- // this case; extracting `TypeRepr`s here would be problematic as we would not be able to provide the corresponding
269
- // type
268
+ // this case; extracting `TypeRepr`s here would be problematic as we would not be able to
269
+ // provide the corresponding type
270
270
if constexpr (!std::is_same_v<T, swift::TypeRepr*>) {
271
271
if (auto e = u.template dyn_cast <T>()) {
272
272
output = fetchLabel (e);
You can’t perform that action at this time.
0 commit comments