Cleanup: compile errors on macos

This commit is contained in:
Jacques Lucke
2021-03-21 19:49:29 +01:00
parent 4fe8d0419c
commit 54bbaa26de
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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();
}