1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-02-02 18:46:46 +01:00

Fix ConcurrentRunTest

This commit is contained in:
Jonas Kvinge 2021-07-01 01:41:28 +02:00
parent 929b031f09
commit 2cf6fe8da7

View File

@ -154,7 +154,7 @@ TEST(ConcurrentRunTest, ConcurrentRunVoidFunction3Start) {
class A {
public:
static void f(int* i) {
void f(int* i) {
*i = *i + 1;
}
};