Skip to content

Commit a8ede51

Browse files
---
yaml --- r: 326494 b: refs/heads/tensorflow c: df14698 h: refs/heads/master
1 parent 1029c7b commit a8ede51

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-04-25-a: 22f738a831d43aff2b9c9773bcb65
816816
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-05-08-a: 7d98cc16689baba5c8a3b90a9329bdcc1a12b4e9
817817
refs/heads/cherr42: a566ad54b073c2c56ac0a705d0a5bed9743135a5
818818
"refs/heads/codable_test_comment_fix": fc8f6824f7f347e1e8db55bff62db385c5728b5a
819-
refs/heads/tensorflow: a5db6bf0a5f96be5f6fcb05101e06ed6246f7044
819+
refs/heads/tensorflow: df14698efd00a482fdbcd4a786f3b88aa0c4ce69
820820
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-11-a: 8126fd7a652e2f70ad6d76505239e34fb2ef3e1a
821821
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-12-a: b3fd3dd84df6717f2e2e9df58c6d7e99fed57086
822822
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-13-a: 71135119579039dc321c5f65d870050fe36efda2

branches/tensorflow/lib/Sema/CSDiagnostics.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2312,20 +2312,20 @@ bool MissingMemberFailure::diagnoseAsError() {
23122312
if (auto correction = corrections.claimUniqueCorrection()) {
23132313
if (getLocator()->isForKeyPathDynamicMemberLookup()) {
23142314
auto diagnostic = emitDiagnostic(
2315-
anchor->getLoc(),
2316-
diag::could_not_find_value_dynamic_member_corrected,
2317-
baseExprType, baseType, getName(),
2318-
correction->CorrectedName);
2315+
anchor->getLoc(),
2316+
diag::could_not_find_value_dynamic_member_corrected,
2317+
baseExprType, baseType, getName(),
2318+
correction->CorrectedName);
23192319
diagnostic.highlight(baseExpr->getSourceRange())
23202320
.highlight(nameLoc.getSourceRange());
23212321
correction->addFixits(diagnostic);
23222322

23232323
} else {
23242324
auto diagnostic = emitDiagnostic(
2325-
anchor->getLoc(),
2326-
diag::could_not_find_value_member_corrected,
2327-
baseType, getName(),
2328-
correction->CorrectedName);
2325+
anchor->getLoc(),
2326+
diag::could_not_find_value_member_corrected,
2327+
baseType, getName(),
2328+
correction->CorrectedName);
23292329
diagnostic.highlight(baseExpr->getSourceRange())
23302330
.highlight(nameLoc.getSourceRange());
23312331
correction->addFixits(diagnostic);

0 commit comments

Comments
 (0)