diff options
author | Tyson Roberts <nall@google.com> | 2018-02-27 15:17:02 +0900 |
---|---|---|
committer | Tyson Roberts <nall@google.com> | 2018-02-27 15:17:02 +0900 |
commit | 70b2bfbceee3bbf6111fd55815b316cc503351d4 (patch) | |
tree | 02d8cda0697830e213eb899d2b2e777bd2b0c911 /src/compiler | |
parent | 3234d489a0e48aecb9bd4517c518c7a5a928b84e (diff) |
Moved statics
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/objective_c_plugin.cc | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/compiler/objective_c_plugin.cc b/src/compiler/objective_c_plugin.cc index 16eba9a104..57aad8b391 100644 --- a/src/compiler/objective_c_plugin.cc +++ b/src/compiler/objective_c_plugin.cc @@ -107,14 +107,6 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { public: ObjectiveCGrpcGenerator() {} virtual ~ObjectiveCGrpcGenerator() {} - - private: - static const ::grpc::string kNonNullBegin = "NS_ASSUME_NONNULL_BEGIN\n"; - static const ::grpc::string kNonNullEnd = "NS_ASSUME_NONNULL_END\n"; - static const ::grpc::string kProtocolOnly = "GPB_GRPC_PROTOCOL_ONLY"; - static const ::grpc::string kForwardDeclare = - "GPB_GRPC_FORWARD_DECLARE_MESSAGE_PROTO"; - public: virtual bool Generate(const grpc::protobuf::FileDescriptor* file, const ::grpc::string& parameter, @@ -125,6 +117,12 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { return true; } + static const ::grpc::string kNonNullBegin = "NS_ASSUME_NONNULL_BEGIN\n"; + static const ::grpc::string kNonNullEnd = "NS_ASSUME_NONNULL_END\n"; + static const ::grpc::string kProtocolOnly = "GPB_GRPC_PROTOCOL_ONLY"; + static const ::grpc::string kForwardDeclare = + "GPB_GRPC_FORWARD_DECLARE_MESSAGE_PROTO"; + auto OmitIf = [](const ::grpc::string& s, const ::grpc::string& v) { return PreprocIf(s, v, kInvertCondition | kCheckIfDefined); }; |