| 1296 | virtual void streamReconstructedExpression( std::ostream &os ) const = 0; |
| 1297 | |
| 1298 | ITransientExpression( bool isBinaryExpression, bool result ) |
| 1299 | : m_isBinaryExpression( isBinaryExpression ), |
| 1300 | m_result( result ) |
| 1301 | {} |
| 1302 | |
| 1303 | // We don't actually need a virtual destructor, but many static analysers |
| 1304 | // complain if it's not here :-( |
nothing calls this directly
no outgoing calls
no test coverage detected