Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:S2

12 class S2 {
16 S2() : a(0) {}
17 S2(S2 &s2) : a(s2.a) {}
18 S2 &operator=(const S2 &);
19 const S2 &operator=(const S2 &) const;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
24 const S2 b;
25 const S2 ba[5];
191 #pragma omp parallel for lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
194 #pragma omp parallel for lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}