C++: autoformat

This commit is contained in:
Robert Marsh
2020-04-08 16:41:29 -07:00
parent 7e299e7494
commit 1199ff92e8

View File

@@ -126,10 +126,12 @@ private module VirtualDispatch {
/**
* A ReturnNode with its ReturnKind and its enclosing callable.
*
*
* Used to fix a join ordering issue in flowsFrom.
*/
private predicate returnNodeWithKindAndEnclosingCallable(ReturnNode node, ReturnKind kind, DataFlowCallable callable) {
private predicate returnNodeWithKindAndEnclosingCallable(
ReturnNode node, ReturnKind kind, DataFlowCallable callable
) {
node.getKind() = kind and
node.getEnclosingCallable() = callable
}