We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3763e4 commit 4792166Copy full SHA for 4792166
ObjectiveGitTests/GTOIDSpec.m
@@ -48,7 +48,7 @@
48
const git_oid *git_oid = NULL;
49
50
{
51
- GTOID *testOID __attribute__((objc_precise_lifetime)) = [[GTOID alloc] initWithSHA:testSHA];
+ GTOID *testOID = [[GTOID alloc] initWithSHA:testSHA];
52
git_oid = testOID.git_oid;
53
}
54
ObjectiveGitTests/GTSignatureSpec.m
@@ -49,7 +49,7 @@
const git_signature *git_signature = NULL;
- GTSignature *testSignature __attribute__((objc_precise_lifetime)) = [[GTSignature alloc] initWithName:name email:email time:time];
+ GTSignature *testSignature = [[GTSignature alloc] initWithName:name email:email time:time];
git_signature = testSignature.git_signature;
55
0 commit comments