--- lib/core/include/GenericMatrix.h.orig 2024-09-24 09:32:47 UTC +++ lib/core/include/GenericMatrix.h @@ -1525,12 +1525,12 @@ class ConcatRows< BlockMatrix decltype(auto) get_container(size_constant) { - return concat_rows(this->hidden().template get_container(size_constant())); + return concat_rows(this->hidden().get_container(size_constant())); } template decltype(auto) get_container(size_constant) const { - return concat_rows(this->hidden().template get_container(size_constant())); + return concat_rows(this->hidden().get_container(size_constant())); } ConcatRows& operator= (const ConcatRows& other) { return ConcatRows::generic_type::operator=(other); }