Skip to content

Commit 4f538a2

Browse files
committed
C++: Accept taint test changes.
1 parent 6d0c8c6 commit 4f538a2

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/test/library-tests/dataflow/taint-tests

1 file changed

+1
-1
lines changed

cpp/ql/test/library-tests/dataflow/taint-tests/thread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ void test_thread() {
2828
std::thread t3(thread_function_3, &s, 42);
2929

3030
std::thread t4([](S* p) {
31-
sink(p->x); // $ MISSING: ir
31+
sink(p->x); // $ ir
3232
}, &s);
3333
}

0 commit comments

Comments
 (0)