| 11245 | |
| 11246 | namespace Catch { |
| 11247 | void prepareExpandedExpression(AssertionResult& result) { |
| 11248 | result.getExpandedExpression(); |
| 11249 | } |
| 11250 | |
| 11251 | // Because formatting using c++ streams is stateful, drop down to C is required |
| 11252 | // Alternatively we could use stringstream, but its performance is... not good. |
no test coverage detected