| 16402 | |
| 16403 | namespace Catch { |
| 16404 | void prepareExpandedExpression(AssertionResult& result) { |
| 16405 | result.getExpandedExpression(); |
| 16406 | } |
| 16407 | |
| 16408 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 16409 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected