Commit ef19ea1b by FritzFlorian

Fix: App used old threading interface.

parent 4a9ca21d
Pipeline #1317 passed with stages
in 4 minutes 48 seconds
...@@ -7,6 +7,6 @@ int global = 0; ...@@ -7,6 +7,6 @@ int global = 0;
int main() { int main() {
// Try to use every feature, to trigger the prohibited use of new if found somewhere // Try to use every feature, to trigger the prohibited use of new if found somewhere
auto t1 = start_thread([]() {}); thread t1{[]() {}};
t1.join(); t1.join();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment