C++: Accept taint test changes.

This commit is contained in:
Mathias Vorreiter Pedersen
2025-07-11 00:07:40 +01:00
parent 6d0c8c6d77
commit 4f538a2b1f

View File

@@ -28,6 +28,6 @@ void test_thread() {
std::thread t3(thread_function_3, &s, 42);
std::thread t4([](S* p) {
sink(p->x); // $ MISSING: ir
sink(p->x); // $ ir
}, &s);
}