Skip to content

Commit 10b7118

Browse files
committed
Merge branch 'master' into property-lifetime
# Conflicts: # ReactiveCocoa.xcodeproj/project.pbxproj
2 parents 9abcdc3 + 978463b commit 10b7118

File tree

13 files changed

+82
-33
lines changed

13 files changed

+82
-33
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[submodule "Carthage/Checkouts/Nimble"]
22
path = Carthage/Checkouts/Nimble
3-
url = https://github.com/ikesyo/Nimble.git
3+
url = https://github.com/norio-nomura/Nimble.git
44
[submodule "Carthage/Checkouts/Quick"]
55
path = Carthage/Checkouts/Quick
6-
url = https://github.com/ikesyo/Quick.git
6+
url = https://github.com/norio-nomura/Quick.git
77
[submodule "Carthage/Checkouts/xcconfigs"]
88
path = Carthage/Checkouts/xcconfigs
99
url = https://github.com/jspahrsummers/xcconfigs.git

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "antitypical/Result" "3.0.0-alpha.3"
1+
github "antitypical/Result" "3.0.0-alpha.4"

Cartfile.private

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "jspahrsummers/xcconfigs" "1ef9763"
2-
github "ikesyo/Quick" "xcode8-beta6"
3-
github "ikesyo/Nimble" "swift3-beta-6"
1+
github "jspahrsummers/xcconfigs" "3d9d996"
2+
github "norio-nomura/Quick" "nn-swift-3-compatibility"
3+
github "norio-nomura/Nimble" "nn-swift-3-compatibility"

Cartfile.resolved

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github "ikesyo/Nimble" "4f38620db52b81eef4298492fed057247308b5d6"
2-
github "ikesyo/Quick" "e14bf151a4c864e6f144559e7b7c09bca0fd38c1"
3-
github "antitypical/Result" "3.0.0-alpha.3"
4-
github "jspahrsummers/xcconfigs" "1ef97639ffbe041da0b1392b2114fa19b922a7a1"
1+
github "norio-nomura/Nimble" "3d82a185b49e8fc9f40e7b72feeb279c778f0935"
2+
github "norio-nomura/Quick" "4a7f1d0a7db637c3ca15b8f198a516fbc5581f87"
3+
github "antitypical/Result" "3.0.0-alpha.4"
4+
github "jspahrsummers/xcconfigs" "3d9d99634cae6d586e272543d527681283b33eb0"

Carthage/Checkouts/Nimble

Carthage/Checkouts/Quick

Submodule Quick updated from e14bf15 to 4a7f1d0

Carthage/Checkouts/xcconfigs

ReactiveCocoa.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2229,7 +2229,7 @@
22292229
isa = PBXProject;
22302230
attributes = {
22312231
LastSwiftUpdateCheck = 0730;
2232-
LastUpgradeCheck = 0710;
2232+
LastUpgradeCheck = 0800;
22332233
ORGANIZATIONNAME = GitHub;
22342234
TargetAttributes = {
22352235
57A4D1AF1BA13D7A00F7D4B1 = {

ReactiveCocoa/Objective-C/RACCompoundDisposable.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ - (instancetype)initWithDisposables:(NSArray *)otherDisposables {
9494

9595
#if RACCompoundDisposableInlineCount
9696
[otherDisposables enumerateObjectsUsingBlock:^(RACDisposable *disposable, NSUInteger index, BOOL *stop) {
97-
_inlineDisposables[index] = disposable;
97+
self->_inlineDisposables[index] = disposable;
9898

9999
// Stop after this iteration if we've reached the end of the inlined
100100
// array.

0 commit comments

Comments
 (0)