C++: Use 'DataFlowType' instead of 'Type' for the 'getType' predicate in 'PostUpdateNode'.

This commit is contained in:
Mathias Vorreiter Pedersen
2022-10-11 11:00:25 +01:00
parent e147a6032e
commit 5cfc3fe8df

View File

@@ -891,7 +891,7 @@ abstract class PostUpdateNode extends Node {
*/
abstract Node getPreUpdateNode();
final override Type getType() { result = this.getPreUpdateNode().getType() }
final override DataFlowType getType() { result = this.getPreUpdateNode().getType() }
}
/**