Skip to content
Snippets Groups Projects
Commit 4925063b authored by murgatroid99's avatar murgatroid99
Browse files

Resolved some comments

parent ca38ddb1
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,8 @@ Pod::Spec.new do |s|
s.summary = 'Generic gRPC client library for iOS'
s.homepage = 'https://www.grpc.io'
s.license = 'New BSD'
s.authors = { 'Jorge Canizales' => 'jcanizales@google.com' }
s.authors = { 'Jorge Canizales' => 'jcanizales@google.com'
'Michael Lumish' => 'mlumish@google.com' }
# s.source = { :git => 'https://github.com/grpc/grpc.git', :tag => 'release-0_5_0' }
......
......@@ -243,6 +243,7 @@
- (void)dealloc {
grpc_metadata_array_destroy(&_status.metadata);
gpr_free(_status.details);
}
@end
......
......@@ -61,7 +61,7 @@ typedef NS_ENUM(NSInteger, GRPCErrorCode) {
#include <grpc/grpc.h>
typedef struct grpc_status {
grpc_status_code status;
const char *details;
char *details;
grpc_metadata_array metadata;
} grpc_status;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment