Skip to content

Fixed linker error when building Release configuration with Xcode 12 #25

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ xcuserdata/
Package.pins
Package.resolved
Packages/
.swiftpm
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import PackageDescription

let package = Package(
name: "CwlUtils",
products: [
.library(name: "CwlUtils", type: .dynamic, targets: ["CwlUtils"]),
products: [
.library(name: "CwlUtils", type: .dynamic, targets: ["CwlUtils"]),
],
dependencies: [
.package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: "1.2.0"),
.package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: "2.0.0"),
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions Sources/CwlUtils/CwlDeque.swift
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public struct Deque<T>: RandomAccessCollection, MutableCollection, RangeReplacea
}

// Internal state for the Deque
private struct DequeHeader {
public struct DequeHeader {
var offset: Int
var count: Int
var capacity: Int
Expand Down Expand Up @@ -455,7 +455,7 @@ private struct HeapObject {
// storage and then using raw pointer offsets into self to access contents
// (avoiding the ManagedBufferPointer accessors which are a performance problem
// in Swift 3).
private final class DequeBuffer<T>: ManagedBuffer<DequeHeader, T> {
public final class DequeBuffer<T>: ManagedBuffer<DequeHeader, T> {
#if true
private static var headerOffset: Int {
return Int(roundUp(UInt(MemoryLayout<HeapObject>.size), toAlignment: MemoryLayout<DequeHeader>.alignment))
Expand Down