Fix: missing return

This commit is contained in:
Jacques Lucke 2021-04-30 13:11:01 +02:00
parent a79b09e762
commit 3182844914
1 changed files with 1 additions and 0 deletions

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);
}