Skip to content

Commit 3bdc6f7

Browse files
committed
NFC: Add missing copyright headers.
Add missing copyright headers in Options/Options.swift and Utilities/PrefixTrie.swift.
1 parent 92e6773 commit 3bdc6f7

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Sources/SwiftDriver/Options/Options.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//===--------------- Options.swift - Swift Driver Options -----------------===//
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+
//===----------------------------------------------------------------------===//
112

213
extension Option {
314
public static let INPUT: Option = Option("<input>", .input, attributes: [.argumentIsPath])

Sources/SwiftDriver/Utilities/PrefixTrie.swift

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
//==------------------ PrefixTrie.swift - Prefix Trie ---------------------===//
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+
113
/// A prefix trie is a data structure for quickly matching prefixes of strings.
214
/// It's a tree structure where each node in the tree corresponds to another
315
/// element in the prefix of whatever you're looking for.

0 commit comments

Comments
 (0)