Skip to content

Commit cf39103

Browse files
committed
C++: Accept test changes.
1 parent 07c4eca commit cf39103

File tree

1 file changed

+3
-3
lines changed
  • cpp/ql/test/library-tests/dataflow/models-as-data

1 file changed

+3
-3
lines changed

cpp/ql/test/library-tests/dataflow/models-as-data/tests.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ void test_sources() {
5656
sink(v_direct); // $ ir
5757

5858
sink(remoteMadSourceIndirect());
59-
sink(*remoteMadSourceIndirect()); // $ MISSING: ir
59+
sink(*remoteMadSourceIndirect()); // $ ir
6060
sink(*remoteMadSourceDoubleIndirect());
61-
sink(**remoteMadSourceDoubleIndirect()); // $ MISSING: ir
61+
sink(**remoteMadSourceDoubleIndirect()); // $ ir
6262

6363
int a, b, c, d;
6464

@@ -124,7 +124,7 @@ void test_sinks() {
124124
// test sources + sinks together
125125

126126
madSinkArg0(localMadSource()); // $ ir
127-
madSinkIndirectArg0(remoteMadSourceIndirect()); // $ MISSING: ir
127+
madSinkIndirectArg0(remoteMadSourceIndirect()); // $ ir
128128
madSinkVar = remoteMadSourceVar; // $ ir
129129
*madSinkVarIndirect = remoteMadSourceVar; // $ MISSING: ir
130130
}

0 commit comments

Comments
 (0)