| 1352 | |
| 1353 | template <typename L, typename R> |
| 1354 | String stringifyBinaryExpr(const DOCTEST_REF_WRAP(L) lhs, const char* op, |
| 1355 | const DOCTEST_REF_WRAP(R) rhs) { |
| 1356 | return (DOCTEST_STRINGIFY(lhs)) + op + (DOCTEST_STRINGIFY(rhs)); |
| 1357 | } |
| 1358 | |
| 1359 | #if DOCTEST_CLANG && DOCTEST_CLANG < DOCTEST_COMPILER(3, 6, 0) |
| 1360 | DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wunused-comparison") |
no outgoing calls
no test coverage detected