Skip to content

Commit 0651352

Browse files
authored
Merge pull request swiftlang#35940 from AnthonyLatsis/eof-warn
2 parents 3025a78 + 3964916 commit 0651352

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

include/swift/ABI/Actor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ class alignas(Alignment_DefaultActor) DefaultActor : public HeapObject {
4141

4242
} // end namespace swift
4343

44-
#endif
44+
#endif

include/swift/AST/ASTSynthesis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,4 +353,4 @@ Type synthesizeType(SynthesisContext &SC, const OptionalSynthesizer<S> &s) {
353353

354354
} // end namespace swift
355355

356-
#endif
356+
#endif

include/swift/AST/Effects.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ void simple_display(llvm::raw_ostream &out, FunctionRethrowingKind value);
7474

7575
} // end namespace swift
7676

77-
#endif
77+
#endif

include/swift/AST/GenericParamList.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,4 +393,4 @@ class alignas(RequirementRepr) TrailingWhereClause final :
393393

394394
} // namespace swift
395395

396-
#endif // SWIFT_GENERIC_PARAM_LIST_H
396+
#endif // SWIFT_GENERIC_PARAM_LIST_H

include/swift/AST/RequestCache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,4 +432,4 @@ struct DenseMapInfo<swift::evaluator::RequestKey<Request, Info>> {
432432

433433
} // end namespace llvm
434434

435-
#endif // SWIFT_AST_REQUEST_CACHE_H
435+
#endif // SWIFT_AST_REQUEST_CACHE_H

include/swift/AST/TypeDifferenceVisitor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,4 +382,4 @@ class CanTypeDifferenceVisitor : public CanTypePairVisitor<Impl, bool> {
382382

383383
}
384384

385-
#endif
385+
#endif

lib/AST/ASTScope.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,4 @@ void ASTScopeImpl::postOrderDo(function_ref<void(ASTScopeImpl *)> fn) {
197197
for (auto *child : getChildren())
198198
child->postOrderDo(fn);
199199
fn(this);
200-
}
200+
}

lib/AST/ASTScopeSourceRange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,4 +353,4 @@ SourceLoc ast_scope::extractNearestSourceLoc(
353353
std::tuple<ASTScopeImpl *, ScopeCreator *> scopeAndCreator) {
354354
const ASTScopeImpl *scope = std::get<0>(scopeAndCreator);
355355
return scope->getSourceRangeOfThisASTNode().Start;
356-
}
356+
}

lib/AST/Effects.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ bool ProtocolConformanceRef::classifyAsThrows() const {
8484
return evaluateOrDefault(getRequirement()->getASTContext().evaluator,
8585
ProtocolConformanceClassifyAsThrowsRequest{getConcrete()},
8686
true);
87-
}
87+
}

stdlib/public/Concurrency/Mutex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
SWIFT_NORETURN void swift::fatalError(uint32_t flags, const char *format, ...) {
2020
abort();
21-
}
21+
}

0 commit comments

Comments
 (0)