Delegates to PrintBytesInObjectToImpl() to print the bytes in the given object. The delegation simplifies the implementation, which uses the << operator and thus is easier done outside of the ::testing::internal namespace, which contains a << operator that sometimes conflicts with the one in STL.
| 11215 | // ::testing::internal namespace, which contains a << operator that |
| 11216 | // sometimes conflicts with the one in STL. |
| 11217 | void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, |
| 11218 | ostream* os) { |
| 11219 | PrintBytesInObjectToImpl(obj_bytes, count, os); |
| 11220 | } |
| 11221 | |
| 11222 | } // namespace internal2 |
| 11223 |
no test coverage detected