Fix ConcurrentRunTest

This commit is contained in:
Jonas Kvinge 2021-07-01 01:41:28 +02:00
parent 929b031f09
commit 2cf6fe8da7
1 changed files with 1 additions and 1 deletions

View File

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