Reorder printers list.
PiperOrigin-RevId: 512708763 Change-Id: I1f24f2e1d17359aee5aa4cdf614c9357872ca03b
This commit is contained in:
parent
2ce822ac55
commit
6882aa0987
@ -306,9 +306,10 @@ template <typename T>
|
|||||||
void PrintWithFallback(const T& value, ::std::ostream* os) {
|
void PrintWithFallback(const T& value, ::std::ostream* os) {
|
||||||
using Printer = typename FindFirstPrinter<
|
using Printer = typename FindFirstPrinter<
|
||||||
T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
|
T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
|
||||||
|
ProtobufPrinter,
|
||||||
internal_stream_operator_without_lexical_name_lookup::StreamPrinter,
|
internal_stream_operator_without_lexical_name_lookup::StreamPrinter,
|
||||||
ProtobufPrinter, ConvertibleToIntegerPrinter,
|
ConvertibleToIntegerPrinter, ConvertibleToStringViewPrinter,
|
||||||
ConvertibleToStringViewPrinter, RawBytesPrinter, FallbackPrinter>::type;
|
RawBytesPrinter, FallbackPrinter>::type;
|
||||||
Printer::PrintValue(value, os);
|
Printer::PrintValue(value, os);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user