Skip to content

Commit 6882aa0

Browse files
pl98copybara-github
authored andcommitted
Reorder printers list.
PiperOrigin-RevId: 512708763 Change-Id: I1f24f2e1d17359aee5aa4cdf614c9357872ca03b
1 parent 2ce822a commit 6882aa0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

googletest/include/gtest/gtest-printers.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,9 +306,10 @@ template <typename T>
306306
void PrintWithFallback(const T& value, ::std::ostream* os) {
307307
using Printer = typename FindFirstPrinter<
308308
T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
309+
ProtobufPrinter,
309310
internal_stream_operator_without_lexical_name_lookup::StreamPrinter,
310-
ProtobufPrinter, ConvertibleToIntegerPrinter,
311-
ConvertibleToStringViewPrinter, RawBytesPrinter, FallbackPrinter>::type;
311+
ConvertibleToIntegerPrinter, ConvertibleToStringViewPrinter,
312+
RawBytesPrinter, FallbackPrinter>::type;
312313
Printer::PrintValue(value, os);
313314
}
314315

0 commit comments

Comments
 (0)