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 90af6b0 commit 504a41cCopy full SHA for 504a41c
1 file changed
fml/platform/darwin/weak_nsobject.mm
@@ -29,8 +29,6 @@ - (id)initWithContainer:(fml::RefPtr<fml::WeakContainer>)container;
29
30
@implementation CRBWeakNSProtocolSentinel
31
32
-@synthesize container = container_;
33
-
34
+ (fml::RefPtr<fml::WeakContainer>)containerForObject:(id)object
35
threadChecker:(debug::DebugThreadChecker)checker {
36
if (object == nil) {
@@ -53,10 +51,10 @@ @implementation CRBWeakNSProtocolSentinel
53
51
}
54
52
55
- (id)initWithContainer:(fml::RefPtr<fml::WeakContainer>)container {
56
- FML_DCHECK(container.get());
+ FML_DCHECK(_container.get());
57
self = [super init];
58
if (self) {
59
- container_ = container;
+ _container = container;
60
61
return self;
62
0 commit comments