Skip to content

Commit be0534a

Browse files
benrimmingtonnatecook1000moiseevxwu
committed
Add the DoubleWidth type
Co-authored-by: Nate Cook <[email protected]> Co-authored-by: Max Moiseev <[email protected]> Co-authored-by: Xiaodi Wu <[email protected]>
1 parent f956c23 commit be0534a

File tree

6 files changed

+1325
-5
lines changed

6 files changed

+1325
-5
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// This source file is part of the Swift Numerics open source project
55
//
6-
// Copyright (c) 2019 Apple Inc. and the Swift Numerics project authors
6+
// Copyright (c) 2019-2021 Apple Inc. and the Swift Numerics project authors
77
// Licensed under Apache License v2.0 with Runtime Library Exception
88
//
99
// See https://swift.org/LICENSE.txt for license information
@@ -71,7 +71,7 @@ let package = Package(
7171

7272
.testTarget(
7373
name: "IntegerUtilitiesTests",
74-
dependencies: ["IntegerUtilities"],
74+
dependencies: ["IntegerUtilities", "_TestSupport"],
7575
exclude: ["CMakeLists.txt"]
7676
),
7777

Sources/_TestSupport/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#[[
22
This source file is part of the Swift Numerics open source project
33
4-
Copyright (c) 2019-2020 Apple Inc. and the Swift Numerics project authors
4+
Copyright (c) 2019-2021 Apple Inc. and the Swift Numerics project authors
55
Licensed under Apache License v2.0 with Runtime Library Exception
66
77
See https://swift.org/LICENSE.txt for license information
88
#]]
99

1010
add_library(_TestSupport
11+
DoubleWidth.swift
1112
Error.swift
1213
Interval.swift
1314
RealTestSupport.swift)

0 commit comments

Comments
 (0)