CI; fix test/cfg/openmp.c

This commit is contained in:
Daniel Marjamäki 2021-05-14 22:16:54 +02:00
parent 809c70b9c3
commit 105bb78775
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ void validCode()
int arr[20] = { 0 };
#pragma omp parallel for
for (int i = 0; i < 20; ++i) {
// cppcheck-suppress unreadVariable
arr[i] = i * i;
}