문제

I have a long list of variable for private and share. How do I write in multiple lines? I am repeating the question here, just because stackoverflow wouldn't let me submit the question otherwise.

도움이 되었습니까?

해결책

Pragmas are interpreted by the compiler after preprocessing, so you can just use the normal line-continuation mechanism:

#pragma omp parallel

can become:

#pragma \
omp \
parallel
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top