This default version is called when kTypeKind is kOtherType.
| 9324 | public: |
| 9325 | // This default version is called when kTypeKind is kOtherType. |
| 9326 | static void PrintValue(const T& value, ::std::ostream* os) { |
| 9327 | PrintBytesInObjectTo(reinterpret_cast<const unsigned char*>(&value), |
| 9328 | sizeof(value), os); |
| 9329 | } |
| 9330 | }; |
| 9331 | |
| 9332 | // We print a protobuf using its ShortDebugString() when the string |
nothing calls this directly
no test coverage detected