compiler: add missing break in switch statement (#9901)

Linters don't like this kind of stuff.
This commit is contained in:
Terry Wilson 2023-02-17 12:18:04 -08:00 committed by GitHub
parent 305dfee2a8
commit d8c572dde6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -608,6 +608,7 @@ static void PrintStub(
break;
case ABSTRACT_CLASS:
GRPC_CODEGEN_FAIL << "Call PrintAbstractClassStub for ABSTRACT_CLASS";
break;
default:
GRPC_CODEGEN_FAIL << "Cannot determine class name for StubType: " << type;
}