Skip to content

Commit 880ec38

Browse files
committed
Import libkern
1 parent a067ac6 commit 880ec38

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Cache.xcodeproj/project.pbxproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,9 @@
256256
TargetAttributes = {
257257
21256E291CEA6CCD003B9F67 = {
258258
CreatedOnToolsVersion = 7.3.1;
259-
DevelopmentTeam = 676PZY29MZ;
260259
DevelopmentTeamName = "Canvas Labs, Inc.";
261260
LastSwiftMigration = 0800;
261+
ProvisioningStyle = Manual;
262262
};
263263
215DB4E01DC379F800034124 = {
264264
CreatedOnToolsVersion = 8.1;
@@ -503,16 +503,20 @@
503503
isa = XCBuildConfiguration;
504504
buildSettings = {
505505
APPLICATION_EXTENSION_API_ONLY = YES;
506+
CODE_SIGN_STYLE = Manual;
506507
DEFINES_MODULE = YES;
508+
DEVELOPMENT_TEAM = "";
507509
DYLIB_COMPATIBILITY_VERSION = 1;
508510
DYLIB_CURRENT_VERSION = 1;
509511
DYLIB_INSTALL_NAME_BASE = "@rpath";
510512
INFOPLIST_FILE = "$(SRCROOT)/Support/Info.plist";
511513
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
512514
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
513-
MARKETING_VERSION = 0.3.1;
515+
MARKETING_VERSION = 0.3.2;
514516
PRODUCT_BUNDLE_IDENTIFIER = com.samsoffes.cache;
515517
PRODUCT_NAME = Cache;
518+
PROVISIONING_PROFILE_SPECIFIER = "";
519+
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "";
516520
SKIP_INSTALL = YES;
517521
};
518522
name = Debug;
@@ -528,7 +532,7 @@
528532
INFOPLIST_FILE = "$(SRCROOT)/Support/Info.plist";
529533
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
530534
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
531-
MARKETING_VERSION = 0.3.1;
535+
MARKETING_VERSION = 0.3.2;
532536
PRODUCT_BUNDLE_IDENTIFIER = com.samsoffes.cache;
533537
PRODUCT_NAME = Cache;
534538
SKIP_INSTALL = YES;

Sources/Cache/MultiCache.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import libkern
2+
13
/// Reads from the first cache available. Writes to all caches in order. If there is a cache miss and the value is later
24
/// found in a subsequent cache, it is written to all previous caches.
35
public struct MultiCache<Element>: Cache {

0 commit comments

Comments
 (0)