[Build] Addressing some linker warnings in the test target.

This commit is contained in:
Scott Goodson 2016-04-17 21:07:35 -07:00
parent 53d010b055
commit cd25facda5
2 changed files with 1 additions and 4 deletions

View File

@ -2380,7 +2380,6 @@
BUNDLE_LOADER = "$(TEST_HOST)"; BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ENABLE_CODE_COVERAGE = YES; CLANG_ENABLE_CODE_COVERAGE = YES;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)", "$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)", "$(DEVELOPER_FRAMEWORKS_DIR)",
); );
@ -2411,7 +2410,6 @@
BUNDLE_LOADER = "$(TEST_HOST)"; BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ENABLE_CODE_COVERAGE = YES; CLANG_ENABLE_CODE_COVERAGE = YES;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)", "$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)", "$(DEVELOPER_FRAMEWORKS_DIR)",
); );
@ -2563,7 +2561,6 @@
BUNDLE_LOADER = "$(TEST_HOST)"; BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ENABLE_CODE_COVERAGE = YES; CLANG_ENABLE_CODE_COVERAGE = YES;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)", "$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)", "$(DEVELOPER_FRAMEWORKS_DIR)",
); );

View File

@ -9,7 +9,7 @@
#import "ASImageNode.h" #import "ASImageNode.h"
#import "ASImageProtocols.h" #import "ASImageProtocols.h"
@interface ASImageNode () @interface ASImageNode (AnimatedImage)
@property (atomic, assign) BOOL animatedImagePaused; @property (atomic, assign) BOOL animatedImagePaused;
@property (nullable, atomic, strong) id <ASAnimatedImageProtocol> animatedImage; @property (nullable, atomic, strong) id <ASAnimatedImageProtocol> animatedImage;
@end @end