Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
increment in OpenMP 'for' statement has improper form
Remarks
The increment part of an OpenMP for loop must use the index variable both on the left and right side of the operator.
Example
The following example generates C3019:
// C3019.cpp
// compile with: /openmp
int main()
{
int i = 0, j = 1, n = 3;
#pragma omp parallel
{
#pragma omp for
for (i = 0; i < 10; i = j + n) // C3019
// Try the following line instead:
// for (i = 0; i < 10; i++)
j *= 2;
}
}