Fix missing 'break' (#7151)

Co-authored-by: Casper Neo <cneo@google.com>
This commit is contained in:
Casper
2022-03-07 11:53:20 -05:00
committed by GitHub
parent 65a10b6e32
commit 40827b21b2

View File

@@ -424,7 +424,7 @@ std::string ConvertCase(const std::string &input, Case output_case,
case Case::kUpperCamel:
return ConvertCase(CamelToSnake(input), output_case);
case Case::kDasher: return ConvertCase(DasherToSnake(input), output_case);
case Case::kKeep: printf("WARNING: Converting from kKeep case.\n");
case Case::kKeep: printf("WARNING: Converting from kKeep case.\n"); break;
default:
case Case::kSnake:
case Case::kScreamingSnake: