MCPcopy Create free account
hub / github.com/dachev/node-cld / MakeCheckOpString

Function MakeCheckOpString

chromium/base/logging.h:454–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

452// Build the error message string.
453template<class t1, class t2>
454string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) {
455 strstream ss;
456 ss << names << " (" << v1 << " vs. " << v2 << ")";
457 return new string(ss.str(), ss.pcount());
458}
459
460// Helper functions for CHECK_OP macro.
461// The (int, int) specialization works around the issue that the compiler

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected