Skip to content
Snippets Groups Projects
Commit eff9256b authored by Nate Kibler's avatar Nate Kibler
Browse files

Fixes broken build due to misplaced import

The GRPCCall import must be in the header because it defines a protocol
that GRPCRequestHeaders uses.
parent 5f859ee0
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#include <grpc/grpc.h> #include <grpc/grpc.h>
@class GRPCCall.h; #import "../GRPCCall.h"
@interface GRPCRequestHeaders : NSObject<GRPCRequestHeaders> @interface GRPCRequestHeaders : NSObject<GRPCRequestHeaders>
......
...@@ -35,7 +35,6 @@ ...@@ -35,7 +35,6 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import "../GRPCCall.h"
#import "NSDictionary+GRPC.h" #import "NSDictionary+GRPC.h"
// Used by the setter. // Used by the setter.
......
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