MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / PrintBytesInObjectTo

Function PrintBytesInObjectTo

cpp/test/src/gtest-printers.cc:114–117  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

112// ::testing::internal namespace, which contains a << operator that
113// sometimes conflicts with the one in STL.
114void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count,
115 ostream* os) {
116 PrintBytesInObjectToImpl(obj_bytes, count, os);
117}
118
119} // namespace internal2
120

Callers 1

PrintValueMethod · 0.85

Calls 1

PrintBytesInObjectToImplFunction · 0.85

Tested by

no test coverage detected