[Bf-blender-cvs] [49cb30bb0c0] master: Cleanup: Fix inconsistent-missing-override warning macOS Clang

Ankit Meel noreply at git.blender.org
Sun May 16 07:50:03 CEST 2021


Commit: 49cb30bb0c0c7b326243349c2293e4723c5268c5
Author: Ankit Meel
Date:   Sun May 16 11:19:04 2021 +0530
Branches: master
https://developer.blender.org/rB49cb30bb0c0c7b326243349c2293e4723c5268c5

Cleanup: Fix inconsistent-missing-override warning
macOS Clang

===================================================================

M	source/blender/functions/FN_generic_virtual_array.hh

===================================================================

diff --git a/source/blender/functions/FN_generic_virtual_array.hh b/source/blender/functions/FN_generic_virtual_array.hh
index c89423375c9..d530d10b3c8 100644
--- a/source/blender/functions/FN_generic_virtual_array.hh
+++ b/source/blender/functions/FN_generic_virtual_array.hh
@@ -562,7 +562,7 @@ template<typename T> class GVMutableArray_For_VMutableArray : public GVMutableAr
     varray_->set(index, std::move(value_));
   }
 
-  void set_all_impl(const void *src)
+  void set_all_impl(const void *src) override
   {
     varray_->set_all(Span((T *)src, size_));
   }



More information about the Bf-blender-cvs mailing list