次の方法で共有


コンパイラ エラー C3030

'var': 'reduction' 句またはディレクティブ内の変数は参照型を含むことはできません

reduction 句などの特定の句には、値パラメーターのみを渡すことができます。

次の例では C3030 が生成されます。

// C3030.cpp
// compile with: /openmp /link vcomps.lib
#include "omp.h"

void test(int &r) {
   #pragma omp parallel reduction(+ : r)   // C3030
      ;
}

void test2(int r) {
   #pragma omp parallel reduction(+ : r)   // OK
      ;
}

int main(int argc, char** argv) {
   int& r = *((int*)argv);
   int s = *((int*)argv);

   #pragma omp parallel reduction(+ : r)   // C3030
      ;

   #pragma omp parallel reduction(+ : s)   // OK
      ;
}