C++: Remove unnecessary cast.

This commit is contained in:
Mathias Vorreiter Pedersen
2025-11-18 20:03:24 +00:00
parent a27ac9d59d
commit 4279a970fa

View File

@@ -3,7 +3,7 @@ import cpp
from SizeofOperator sto, string elemDesc, Element e
where
elemDesc = "SizeofOperator.getTypeOperand()" and
e = sto.(SizeofOperator).getTypeOperand()
e = sto.getTypeOperand()
or
elemDesc = "SizeofExprOperator.getExprOperand()" and
e = sto.(SizeofExprOperator).getExprOperand()