I have the following struct :
struct MyStruct
{
JUCE_DECLARE_NON_COPYABLE (MyStruct)
};
and std::is_trivially_copyable<MyStruct>::value is (wrongly) returning true
(see why here at stackoverflow)
as a result ArrayBase will consider my MyStruct to be trivially copyable…
Could you add a workaround for that?
