Various build fixes; update checked-in codegen. (#4572)

This commit is contained in:
Josh Ventura
2017-12-28 12:10:55 -05:00
committed by Wouter van Oortmerssen
parent a4dbe13486
commit 1d73b3b9fc
8 changed files with 341 additions and 317 deletions

View File

@@ -478,7 +478,7 @@ static void PrintStub(Printer* p, VARS& vars, const ServiceDescriptor* service,
break;
case BLOCKING_CLIENT_INTERFACE:
interface = true;
FALLTHROUGH_INTENDED;
FALLTHROUGH_INTENDED; // fallthrough
case BLOCKING_CLIENT_IMPL:
call_type = BLOCKING_CALL;
stub_name += "BlockingStub";
@@ -486,7 +486,7 @@ static void PrintStub(Printer* p, VARS& vars, const ServiceDescriptor* service,
break;
case FUTURE_CLIENT_INTERFACE:
interface = true;
FALLTHROUGH_INTENDED;
FALLTHROUGH_INTENDED; // fallthrough
case FUTURE_CLIENT_IMPL:
call_type = FUTURE_CALL;
stub_name += "FutureStub";