Fix: missing return

This commit is contained in:
2021-04-30 13:11:01 +02:00
parent a79b09e762
commit 3182844914

View File

@@ -123,6 +123,7 @@ class GVArray {
BLI_assert(this->is_single());
if (size_ == 1) {
this->get(0, r_value);
return;
}
this->get_internal_single_impl(r_value);
}