Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2022-04-07 18:14:47 +0300
committerSergey Sharybin <sergey@blender.org>2022-04-07 18:14:47 +0300
commit1a09024eacbdfa52b3ec669f2bdea313a06b82db (patch)
tree1542a3061b0776dd187731631d6aacc0eb30a0ee
parent9db15f502c105f96f0ec939dd2fc79f4567a4bf7 (diff)
Cleanup: Compilation warning about virtual functions
Method which overrides a base class's virtual methods are expetced to be marked with `override`. This also gives better idea to the developers about what is going on.
-rw-r--r--source/blender/blenlib/BLI_virtual_array.hh5
-rw-r--r--source/blender/blenlib/intern/generic_virtual_array.cc4
2 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_virtual_array.hh b/source/blender/blenlib/BLI_virtual_array.hh
index 206e0191a54..27bb04f5796 100644
--- a/source/blender/blenlib/BLI_virtual_array.hh
+++ b/source/blender/blenlib/BLI_virtual_array.hh
@@ -295,7 +295,7 @@ template<typename T> class VArrayImpl_For_Span : public VMutableArrayImpl<T> {
return data_ == other_span.data();
}
- void materialize_compressed(IndexMask mask, MutableSpan<T> r_span) const
+ void materialize_compressed(IndexMask mask, MutableSpan<T> r_span) const override
{
mask.to_best_mask_type([&](auto best_mask) {
for (const int64_t i : IndexRange(best_mask.size())) {
@@ -304,7 +304,8 @@ template<typename T> class VArrayImpl_For_Span : public VMutableArrayImpl<T> {
});
}
- void materialize_compressed_to_uninitialized(IndexMask mask, MutableSpan<T> r_span) const
+ void materialize_compressed_to_uninitialized(IndexMask mask,
+ MutableSpan<T> r_span) const override
{
T *dst = r_span.data();
mask.to_best_mask_type([&](auto best_mask) {
diff --git a/source/blender/blenlib/intern/generic_virtual_array.cc b/source/blender/blenlib/intern/generic_virtual_array.cc
index 6cdbbde671a..e1a150c3f08 100644
--- a/source/blender/blenlib/intern/generic_virtual_array.cc
+++ b/source/blender/blenlib/intern/generic_virtual_array.cc
@@ -279,12 +279,12 @@ class GVArrayImpl_For_SingleValueRef : public GVArrayImpl {
type_->fill_construct_indices(value_, dst, mask);
}
- void materialize_compressed(const IndexMask mask, void *dst) const
+ void materialize_compressed(const IndexMask mask, void *dst) const override
{
type_->fill_assign_n(value_, dst, mask.size());
}
- void materialize_compressed_to_uninitialized(const IndexMask mask, void *dst) const
+ void materialize_compressed_to_uninitialized(const IndexMask mask, void *dst) const override
{
type_->fill_construct_n(value_, dst, mask.size());
}