Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the DoubleWidth type #197

Merged
merged 1 commit into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//
// This source file is part of the Swift Numerics open source project
//
// Copyright (c) 2019 Apple Inc. and the Swift Numerics project authors
// Copyright (c) 2019-2021 Apple Inc. and the Swift Numerics project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
Expand Down Expand Up @@ -71,7 +71,7 @@ let package = Package(

.testTarget(
name: "IntegerUtilitiesTests",
dependencies: ["IntegerUtilities"],
dependencies: ["IntegerUtilities", "_TestSupport"],
exclude: ["CMakeLists.txt"]
),

Expand Down
3 changes: 2 additions & 1 deletion Sources/_TestSupport/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#[[
This source file is part of the Swift Numerics open source project

Copyright (c) 2019-2020 Apple Inc. and the Swift Numerics project authors
Copyright (c) 2019-2021 Apple Inc. and the Swift Numerics project authors
Licensed under Apache License v2.0 with Runtime Library Exception

See https://swift.org/LICENSE.txt for license information
#]]

add_library(_TestSupport
DoubleWidth.swift
Error.swift
Interval.swift
RealTestSupport.swift)
Expand Down
Loading