Skip to content

Do not use std::is_trivially_copyable on GCC 4.X

Kenneth Moreland requested to merge kmorel/vtk-m:gcc-4-trivially-copyable into master

Although GCC 4.8 and 4.9 claim to be C++11 compliant, there are a few C++11 features they do not support. One of these features is std::is_trivially_copyable. So on these platforms, do not attempt to use it. Instead, treat nothing as trivially copyable.

Merge request reports