Skip to content

Commit 397de3e

Browse files
committed
[stdlib] Add LegacyABI.swift for legacy non-API declarations
1 parent dc89cc0 commit 397de3e

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

stdlib/public/core/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ set(SWIFTLIB_ESSENTIAL
9090
KeyValuePairs.swift
9191
LazyCollection.swift
9292
LazySequence.swift
93+
LegacyABI.swift
9394
LifetimeManager.swift
9495
ManagedBuffer.swift
9596
Map.swift

stdlib/public/core/GroupInfo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@
221221
"Equatable.swift",
222222
"Comparable.swift",
223223
"Codable.swift",
224+
"LegacyABI.swift",
224225
"MigrationSupport.swift"
225226
],
226227
"Result": [

stdlib/public/core/LegacyABI.swift

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift.org open source project
4+
//
5+
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See https://swift.org/LICENSE.txt for license information
9+
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
12+
13+
// This file contains non-API (or underscored) declarations that are needed to
14+
// be kept around for ABI compatibility
15+

0 commit comments

Comments
 (0)