You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid a few possible unnecessary copies in low level implementation details (#1296)
* Declare a few private types as non-copyable to avoid unintentional copies of data in low level implementation details
* Avoid potential unnecessary copies when highlighting tutorial code steps
Copy file name to clipboardExpand all lines: Sources/SwiftDocC/Utility/CollectionChanges.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
/*
2
2
This source file is part of the Swift.org open source project
3
3
4
-
Copyright (c) 2022 Apple Inc. and the Swift project authors
4
+
Copyright (c) 2022-2025 Apple Inc. and the Swift project authors
5
5
Licensed under Apache License v2.0 with Runtime Library Exception
6
6
7
7
See https://swift.org/LICENSE.txt for license information
@@ -65,7 +65,7 @@ struct CollectionChanges {
65
65
///
66
66
/// - Important:
67
67
/// Removals need to be applied in reverse order. All removals need to be applied before applying any insertions. Insertions need to be applied in order.
0 commit comments