| 452 | // Build the error message string. |
| 453 | template<class t1, class t2> |
| 454 | string* 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 |
nothing calls this directly
no outgoing calls
no test coverage detected