Skip to content

Commit 61fcdf5

Browse files
authored
Merge pull request #3527 from practicalswift/gardening-20160715
[gardening] Header fixes. Don't compare to false.
2 parents c47687d + 5558ea0 commit 61fcdf5

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

lib/IDE/TypeReconstruction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- TypeReconstruction.cpp ----------------------------------------------===//
1+
//===--- TypeReconstruction.cpp -------------------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

lib/SILOptimizer/UtilityPasses/EpilogueARCMatcherDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- EpilogueRetainReleaseMatcherDumper.cpp - Find Epilogue Releases --===//
1+
//===--- EpilogueARCMatcherDumper.cpp - Find Epilogue Releases ------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

lib/Sema/DerivedConformanceError.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- DerivedConformanceError.cpp - Derived Error ------===//
1+
//===--- DerivedConformanceError.cpp - Derived Error ----------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

stdlib/public/Platform/visualc.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- vc.modulemap -----------------------------------------------------===//
1+
//===--- visualc.modulemap ------------------------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

stdlib/public/core/DebuggerSupport.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- PrintForDebugger.swift -------------------------------------------===//
1+
//===--- DebuggerSupport.swift --------------------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -202,7 +202,7 @@ public enum _DebuggerSupport {
202202
}
203203

204204
let count = Int(mirror.children.count)
205-
let bullet = isRoot && (count == 0 || willExpand == false) ? ""
205+
let bullet = isRoot && (count == 0 || !willExpand) ? ""
206206
: count == 0 ? "- "
207207
: maxDepth <= 0 ? "" : ""
208208
print("\(bullet)", terminator: "", to: &targetStream)

stdlib/public/stubs/CommandLine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2016 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See http://swift.org/LICENSE.txt for license information

0 commit comments

Comments
 (0)