| 85 | |
| 86 | |
| 87 | void |
| 88 | TextOutputter::printFailureLocation( SourceLine sourceLine ) |
| 89 | { |
| 90 | if ( !sourceLine.isValid() ) |
| 91 | return; |
| 92 | |
| 93 | m_stream << "line: " << sourceLine.lineNumber() |
| 94 | << ' ' << sourceLine.fileName(); |
| 95 | } |
| 96 | |
| 97 | |
| 98 | void |
nothing calls this directly
no test coverage detected