mirror of
https://github.com/github/codeql.git
synced 2025-12-30 23:58:15 +01:00
14 lines
290 B
Plaintext
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
|