Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

filters: support new platform ResumeIteration status #1100

Merged
merged 21 commits into from
Sep 30, 2020
Merged
Prev Previous commit
Next Next commit
format
Signed-off-by: Mike Schore <mike.schore@gmail.com>
goaway committed Sep 29, 2020
commit 6b6e1a29f93796029f220e960b29b1d072f3bff4
4 changes: 2 additions & 2 deletions library/objective-c/EnvoyBridgeUtility.h
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ static inline envoy_data toNativeData(NSData *data) {
return ret;
}

static inline envoy_data * toNativeDataPtr(NSData *data) {
static inline envoy_data *toNativeDataPtr(NSData *data) {
if (data == nil) {
return nil;
goaway marked this conversation as resolved.
Show resolved Hide resolved
}
@@ -55,7 +55,7 @@ static inline envoy_headers toNativeHeaders(EnvoyHeaders *headers) {
return ret;
}

static inline envoy_headers * toNativeHeadersPtr(EnvoyHeaders *headers) {
static inline envoy_headers *toNativeHeadersPtr(EnvoyHeaders *headers) {
if (headers == nil) {
return NULL;
}