| 15449 | |
| 15450 | namespace Catch { |
| 15451 | void prepareExpandedExpression(AssertionResult& result) { |
| 15452 | result.getExpandedExpression(); |
| 15453 | } |
| 15454 | |
| 15455 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 15456 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected