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:
authorBrecht Van Lommel <brecht@blender.org>2021-03-22 17:14:51 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-03-22 18:05:10 +0300
commit3e44221b57d105cd93599201fa1a5d6734232d87 (patch)
tree84a2a3a990b94f1eae686360b72c7489b4f04bfd /source/blender/functions
parenta31b162c6e457dd3c5475970deb4f0ff096c237d (diff)
Fix build error on macOS/clang
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: