Skip to content

Commit 77401de

Browse files
committed
Swift: reflow comment
1 parent 7e67338 commit 77401de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swift/extractor/infra/SwiftDispatcher.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ class SwiftDispatcher {
265265
bool fetchLabelFromUnionCase(const llvm::PointerUnion<Ts...> u, TrapLabel<Tag>& output) {
266266
// we rely on the fact that when we extract `ASTNode` instances (which only happens
267267
// 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
270270
if constexpr (!std::is_same_v<T, swift::TypeRepr*>) {
271271
if (auto e = u.template dyn_cast<T>()) {
272272
output = fetchLabel(e);

0 commit comments

Comments
 (0)