Skip to content

Commit

Permalink
Import libkern
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Jun 3, 2020
1 parent a067ac6 commit 880ec38
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Cache.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@
TargetAttributes = {
21256E291CEA6CCD003B9F67 = {
CreatedOnToolsVersion = 7.3.1;
DevelopmentTeam = 676PZY29MZ;
DevelopmentTeamName = "Canvas Labs, Inc.";
LastSwiftMigration = 0800;
ProvisioningStyle = Manual;
};
215DB4E01DC379F800034124 = {
CreatedOnToolsVersion = 8.1;
Expand Down Expand Up @@ -503,16 +503,20 @@
isa = XCBuildConfiguration;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = YES;
CODE_SIGN_STYLE = Manual;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Support/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 0.3.1;
MARKETING_VERSION = 0.3.2;
PRODUCT_BUNDLE_IDENTIFIER = com.samsoffes.cache;
PRODUCT_NAME = Cache;
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "";
SKIP_INSTALL = YES;
};
name = Debug;
Expand All @@ -528,7 +532,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Support/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 0.3.1;
MARKETING_VERSION = 0.3.2;
PRODUCT_BUNDLE_IDENTIFIER = com.samsoffes.cache;
PRODUCT_NAME = Cache;
SKIP_INSTALL = YES;
Expand Down
2 changes: 2 additions & 0 deletions Sources/Cache/MultiCache.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import libkern

/// Reads from the first cache available. Writes to all caches in order. If there is a cache miss and the value is later
/// found in a subsequent cache, it is written to all previous caches.
public struct MultiCache<Element>: Cache {
Expand Down

0 comments on commit 880ec38

Please sign in to comment.