Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAugust Mueller <gus@flyingmeat.com>2022-10-06 19:26:35 +0300
committerAugust Mueller <gus@flyingmeat.com>2022-10-06 19:26:35 +0300
commit977dd81701047a19ab14646953e588f9075d61ac (patch)
tree4f17e9f21a6f61c754e3116e5514892d90220923
parentd31d362cd5cf8a121c3823ebfb65d961f0eea658 (diff)
parent3e33e814a2b4968ad5eb73b9fc75066756daa9d2 (diff)
Merge branch 'tiwoc-fix-assign-object-property'HEADmaster
-rw-r--r--Tests/FMDBTempDBTests.m4
-rwxr-xr-xsrc/fmdb/FMDatabasePool.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Tests/FMDBTempDBTests.m b/Tests/FMDBTempDBTests.m
index bb759df..035f8ab 100644
--- a/Tests/FMDBTempDBTests.m
+++ b/Tests/FMDBTempDBTests.m
@@ -8,8 +8,8 @@
#import "FMDBTempDBTests.h"
-static NSString *const testDatabasePath = @"/tmp/tmp.db";
-static NSString *const populatedDatabasePath = @"/tmp/tmp-populated.db";
+static NSString *const testDatabasePath = @"/private/tmp/tmp.db";
+static NSString *const populatedDatabasePath = @"/private/tmp/tmp-populated.db";
@implementation FMDBTempDBTests
diff --git a/src/fmdb/FMDatabasePool.h b/src/fmdb/FMDatabasePool.h
index 952fcd9..341c05f 100755
--- a/src/fmdb/FMDatabasePool.h
+++ b/src/fmdb/FMDatabasePool.h
@@ -38,7 +38,7 @@ NS_ASSUME_NONNULL_BEGIN
/** Delegate object */
-@property (atomic, assign, nullable) id delegate;
+@property (atomic, unsafe_unretained, nullable) id delegate;
/** Maximum number of databases to create */