@@ -261,16 +261,23 @@ struct ConvertibleToStringViewPrinter {
261
261
GTEST_API_ void PrintBytesInObjectTo (const unsigned char * obj_bytes,
262
262
size_t count,
263
263
::std::ostream* os);
264
- struct FallbackPrinter {
265
- template <typename T>
264
+ struct RawBytesPrinter {
265
+ // SFINAE on `sizeof` to make sure we have a complete type.
266
+ template <typename T, size_t = sizeof (T)>
266
267
static void PrintValue (const T& value, ::std::ostream* os) {
267
268
PrintBytesInObjectTo (
268
- static_cast <const unsigned char *>(
269
- reinterpret_cast <const void *>(std::addressof (value))),
269
+ reinterpret_cast <const unsigned char *>(std::addressof (value)),
270
270
sizeof (value), os);
271
271
}
272
272
};
273
273
274
+ struct FallbackPrinter {
275
+ template <typename T>
276
+ static void PrintValue (const T&, ::std::ostream* os) {
277
+ *os << " (incomplete type)" ;
278
+ }
279
+ };
280
+
274
281
// Try every printer in order and return the first one that works.
275
282
template <typename T, typename E, typename Printer, typename ... Printers>
276
283
struct FindFirstPrinter : FindFirstPrinter<T, E, Printers...> {};
@@ -297,7 +304,7 @@ void PrintWithFallback(const T& value, ::std::ostream* os) {
297
304
T, void , ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
298
305
internal_stream_operator_without_lexical_name_lookup::StreamPrinter,
299
306
ProtobufPrinter, ConvertibleToIntegerPrinter,
300
- ConvertibleToStringViewPrinter, FallbackPrinter>::type;
307
+ ConvertibleToStringViewPrinter, RawBytesPrinter, FallbackPrinter>::type;
301
308
Printer::PrintValue (value, os);
302
309
}
303
310
0 commit comments