OpenMP-Examples/sources/Example_threadprivate.5.cpp

13 lines
170 B
C++

/*
* @@name: threadprivate.5c
* @@type: C++
* @@compilable: no
* @@linkable: no
* @@expect: nothing
*/
class T {
public:
static int i;
#pragma omp threadprivate(i)
};