| 13035 | |
| 13036 | namespace Catch { |
| 13037 | void prepareExpandedExpression(AssertionResult& result) { |
| 13038 | result.getExpandedExpression(); |
| 13039 | } |
| 13040 | |
| 13041 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 13042 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected