Hi,
When building a simple program like below with the trunk Clang
I see a warning “warning: Non-trivial type …” printed twice. Is this
intentional?
#include
class A {
public:
A() {};
};
int main()
{
A a[100];
#pragma omp target teams distribute parallel for map(to: a[0:100])
for(int i=0; i<10; i++) {
}
}