Remove another aspect of ImageView that was deprecated in 2019.10.
This got deprecated in 069c81b9cb but
without any visible documentation bit, so it was almost impossible to
trace back to a particular version. Or know about it when using the API.
Warning{}<<"ImageView: passing empty data to a non-empty view is deprecated, use a constructor without the data parameter instead";
#endif
CORRADE_ASSERT(!_data||Implementation::imageDataSize(*this)<=_data.size(),"ImageView: data too small, got"<<_data.size()<<"but expected at least"<<Implementation::imageDataSize(*this)<<"bytes",);
#else
CORRADE_ASSERT(Implementation::imageDataSize(*this)<=_data.size(),"ImageView: data too small, got"<<_data.size()<<"but expected at least"<<Implementation::imageDataSize(*this)<<"bytes",);