| 15770 | |
| 15771 | namespace Catch { |
| 15772 | void prepareExpandedExpression(AssertionResult& result) { |
| 15773 | result.getExpandedExpression(); |
| 15774 | } |
| 15775 | |
| 15776 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 15777 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected