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:
Diffstat (limited to 'source/blender/functions')
-rw-r--r--source/blender/functions/FN_generic_virtual_array.hh2
-rw-r--r--source/blender/functions/FN_generic_virtual_vector_array.hh2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/functions/FN_generic_virtual_array.hh b/source/blender/functions/FN_generic_virtual_array.hh
index c60476c4631..4f0d777bfe9 100644
--- a/source/blender/functions/FN_generic_virtual_array.hh
+++ b/source/blender/functions/FN_generic_virtual_array.hh
@@ -256,7 +256,7 @@ template<typename T> class VArrayForGVArray : public VArray<T> {
Span<T> get_span_impl() const override
{
- return array_.get_span().typed<T>();
+ return array_.get_span().template typed<T>();
}
bool is_single_impl() const override
diff --git a/source/blender/functions/FN_generic_virtual_vector_array.hh b/source/blender/functions/FN_generic_virtual_vector_array.hh
index 22d1e5641e5..ef3f53b5c25 100644
--- a/source/blender/functions/FN_generic_virtual_vector_array.hh
+++ b/source/blender/functions/FN_generic_virtual_vector_array.hh
@@ -179,7 +179,7 @@ template<typename T> class VVectorArrayForGVVectorArray : public VVectorArray<T>
return value;
}
- bool is_single_vector_impl() const
+ bool is_single_vector_impl() const override
{
return vector_array_.is_single_vector();
}