컴파일러 오류 C3005
'error_text': OpenMP 'directive' 지시문에 예기치 못한 토큰이 있습니다.
OpenMP 지시문 형식이 잘못되었습니다.
다음 샘플에서는 C3005를 생성합니다.
// C3005.c
// compile with: /openmp
int main()
{
#pragma omp parallel + for // C3005
}
C3005는 pragma와 같은 줄에 여는 중괄호를 배치하면 발생할 수 있습니다.
// C3005b.c
// compile with: /openmp
int main() {
#pragma omp parallel { // C3005 put open brace on next line
lbl2:;
}
goto lbl2;
}