diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-06-23 10:27:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 10:27:06 -0700 |
commit | b309bc94bfd3bdd067e4f0a62d0cd9f29cf3a288 (patch) | |
tree | f154b50f043a602743db225ede89582e12c3bf1b /src/objective-c/ProtoRPC/ProtoService.h | |
parent | 1bc42d9504f789a239f572fc16c05a7cf88df525 (diff) | |
parent | 8d9e83806d24ad5e1a47bb705d88816bfc8b4864 (diff) |
Merge pull request #6922 from y-zeng/ios-test
Enable treating warnings as errors in objc tests
Diffstat (limited to 'src/objective-c/ProtoRPC/ProtoService.h')
-rw-r--r-- | src/objective-c/ProtoRPC/ProtoService.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoService.h b/src/objective-c/ProtoRPC/ProtoService.h index 87d06e1ae5..7faae1b49c 100644 --- a/src/objective-c/ProtoRPC/ProtoService.h +++ b/src/objective-c/ProtoRPC/ProtoService.h @@ -55,6 +55,9 @@ __attribute__((deprecated("Please use GRPCProtoService."))) * This subclass is empty now. Eventually we'll remove ProtoService class * to avoid potential naming conflict */ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" @interface GRPCProtoService : ProtoService +#pragma clang diagnostic pop @end |