| 11156 | |
| 11157 | namespace Catch { |
| 11158 | void prepareExpandedExpression(AssertionResult &result) { |
| 11159 | result.getExpandedExpression(); |
| 11160 | } |
| 11161 | |
| 11162 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 11163 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected