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
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 4f0d777bfe9..c6230730a8d 100644
--- a/source/blender/functions/FN_generic_virtual_array.hh
+++ b/source/blender/functions/FN_generic_virtual_array.hh
@@ -238,7 +238,7 @@ template<typename T> class VArrayForGVArray : public VArray<T> {
public:
VArrayForGVArray(const GVArray &array) : VArray<T>(array.size()), array_(array)
{
- BLI_assert(array_.type().is<T>());
+ BLI_assert(array_.type().template is<T>());
}
protected: