diff options
author | Craig Tiller <ctiller@google.com> | 2016-07-13 15:40:24 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-07-13 15:40:24 -0700 |
commit | 22ac0d17c13a02ef4400700f5fe1af43c78d4931 (patch) | |
tree | 5c45770eaedb68fdbe42b5e5f54ae47446f61402 /src/compiler/config.h | |
parent | c8a8513d5911e99241ec0bb7b038d4344110cb41 (diff) | |
parent | 8da7b1f779b36394008aad5ef40f49b03ce79c7b (diff) |
Merge branch 'delayed-write' into grand-unified-closures
Diffstat (limited to 'src/compiler/config.h')
-rw-r--r-- | src/compiler/config.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/compiler/config.h b/src/compiler/config.h index 1cbd842f0a..ba44cd8a31 100644 --- a/src/compiler/config.h +++ b/src/compiler/config.h @@ -60,7 +60,8 @@ #ifndef GRPC_CUSTOM_PARSEGENERATORPARAMETER #include <google/protobuf/compiler/code_generator.h> -#define GRPC_CUSTOM_PARSEGENERATORPARAMETER ::google::protobuf::compiler::ParseGeneratorParameter +#define GRPC_CUSTOM_PARSEGENERATORPARAMETER \ + ::google::protobuf::compiler::ParseGeneratorParameter #endif #ifndef GRPC_CUSTOM_STRING @@ -81,8 +82,8 @@ static inline int PluginMain(int argc, char* argv[], const CodeGenerator* generator) { return GRPC_CUSTOM_PLUGINMAIN(argc, argv, generator); } -static inline void ParseGeneratorParameter(const string& parameter, - std::vector<std::pair<string, string> >* options) { +static inline void ParseGeneratorParameter( + const string& parameter, std::vector<std::pair<string, string> >* options) { GRPC_CUSTOM_PARSEGENERATORPARAMETER(parameter, options); } |