aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/RxLibrary/GRXForwardingWriter.h
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-07-17 12:18:08 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-07-17 12:18:08 -0700
commit5604712b03d097721b31b60d71ac1f2cdf53c039 (patch)
treecee57a25fa18e921a5f9b5f0cf8838df53c72282 /src/objective-c/RxLibrary/GRXForwardingWriter.h
parent7b52c98e625ee5fbfb2fd205750124836bb9f46b (diff)
id<GRXWriter> -> GRXWriter * in the runtime
Diffstat (limited to 'src/objective-c/RxLibrary/GRXForwardingWriter.h')
-rw-r--r--src/objective-c/RxLibrary/GRXForwardingWriter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/RxLibrary/GRXForwardingWriter.h b/src/objective-c/RxLibrary/GRXForwardingWriter.h
index 820b728d31..d004333d2b 100644
--- a/src/objective-c/RxLibrary/GRXForwardingWriter.h
+++ b/src/objective-c/RxLibrary/GRXForwardingWriter.h
@@ -39,5 +39,5 @@
// input writer, and for classes that represent objects with input and
// output sequences of values, like an RPC.
@interface GRXForwardingWriter : GRXWriter
-- (instancetype)initWithWriter:(id<GRXWriter>)writer NS_DESIGNATED_INITIALIZER;
+- (instancetype)initWithWriter:(GRXWriter *)writer NS_DESIGNATED_INITIALIZER;
@end