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:
authorJacques Lucke <jacques@blender.org>2021-03-21 21:49:29 +0300
committerJacques Lucke <jacques@blender.org>2021-03-21 21:49:29 +0300
commit54bbaa26de5e4e24c8f8c25015b701797ee5c59f (patch)
treef4504c0cf01906df109a915e4a127046c2692bbc /source/blender/functions/FN_generic_virtual_array.hh
parent4fe8d0419c2f080a248f52b3924ce2a4e897e5cb (diff)
Cleanup: compile errors on macos
Diffstat (limited to 'source/blender/functions/FN_generic_virtual_array.hh')
-rw-r--r--source/blender/functions/FN_generic_virtual_array.hh2
1 files changed, 1 insertions, 1 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