| 15431 | |
| 15432 | namespace Catch { |
| 15433 | void prepareExpandedExpression(AssertionResult& result) { |
| 15434 | result.getExpandedExpression(); |
| 15435 | } |
| 15436 | |
| 15437 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 15438 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected