| 176 | |
| 177 | template <typename T1, typename T2> |
| 178 | string* MakeCheckOpString(const T1& v1, const T2& v2, const char* exprtext) { |
| 179 | CheckOpMessageBuilder comb(exprtext); |
| 180 | MakeCheckOpValueString(comb.ForVar1(), v1); |
| 181 | MakeCheckOpValueString(comb.ForVar2(), v2); |
| 182 | return comb.NewString(); |
| 183 | } |
| 184 | |
| 185 | // Helper functions for CHECK_OP macro. |
| 186 | // The (int, int) specialization works around the issue that the compiler |
nothing calls this directly
no test coverage detected