Cleanup: remove warnings

This assert was producing warning in debug builds because
it was never hit under some circumstances.
This commit is contained in:
2021-11-26 17:32:09 +01:00
parent 602ecbdf9a
commit 0789f61373

View File

@@ -423,7 +423,6 @@ class VArrayImpl_For_DerivedSpan final : public VMutableArrayImpl<ElemT> {
void set(const int64_t index, ElemT value) override
{
BLI_assert(SetFunc != nullptr);
SetFunc(data_[index], std::move(value));
}