Files
codeql/cpp/ql/test/library-tests/blocks/cpp/exprs.ql
2023-05-09 15:35:54 +02:00

14 lines
290 B
Plaintext

import cpp
/*
* Plainer output for CStyleCast, that does not reference the (potentially platform
* dependent) type of the cast.
*/
class CStyleCastPlain extends CStyleCast {
override string toString() { result = "Conversion of " + this.getExpr().toString() }
}
from Expr e
select e