We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa66d1 commit 216d409Copy full SHA for 216d409
src/google/protobuf/compiler/command_line_interface.cc
@@ -2707,9 +2707,11 @@ bool CommandLineInterface::EnforceProtocEditionsSupport(
2707
2708
if (edition > ProtocMaximumEdition()) {
2709
std::cerr << absl::Substitute(
2710
- "$0: is a file using edition $1, which is later than the protoc "
2711
- "maximum supported edition $2.",
2712
- fd->name(), edition, ProtocMaximumEdition());
+ "$0: is a file using edition $1, which is later than "
+ "the protoc "
+ "maximum supported edition $2.",
2713
+ fd->name(), edition, ProtocMaximumEdition())
2714
+ << std::endl;
2715
return false;
2716
}
2717
0 commit comments