Skip to content

Commit 6c0dc44

Browse files
authored
Merge pull request #940 from aschackmull/cpp/sync-dataflow
CPP/Java: Sync Dataflow
2 parents 26525fc + 980a690 commit 6c0dc44

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)