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