Skip to content

Commit 980a690

Browse files
committed
CPP/Java: Sync Dataflow
1 parent 26525fc commit 980a690

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ import ImplCommon
237237
* this dispatch target of `ma` implies a reduced set of dispatch origins
238238
* to which data may flow if it should reach a `return` statement.
239239
*/
240-
abstract class CallContext extends TCallContext { abstract string toString(); }
240+
abstract class CallContext extends TCallContext {
241+
abstract string toString();
242+
}
241243

242244
class CallContextAny extends CallContext, TAnyCallContext {
243245
override string toString() { result = "CcAny" }

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ import ImplCommon
237237
* this dispatch target of `ma` implies a reduced set of dispatch origins
238238
* to which data may flow if it should reach a `return` statement.
239239
*/
240-
abstract class CallContext extends TCallContext { abstract string toString(); }
240+
abstract class CallContext extends TCallContext {
241+
abstract string toString();
242+
}
241243

242244
class CallContextAny extends CallContext, TAnyCallContext {
243245
override string toString() { result = "CcAny" }

0 commit comments

Comments
 (0)