blob: 62ade36b0d90ddeba9e23c44d194743bbf8eae27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- 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<MatrixList, std::true_ty
template <size_t i>
decltype(auto) get_container(size_constant<i>)
{
- return concat_rows(this->hidden().template get_container(size_constant<i>()));
+ return concat_rows(this->hidden().get_container(size_constant<i>()));
}
template <size_t i>
decltype(auto) get_container(size_constant<i>) const
{
- return concat_rows(this->hidden().template get_container(size_constant<i>()));
+ return concat_rows(this->hidden().get_container(size_constant<i>()));
}
ConcatRows& operator= (const ConcatRows& other) { return ConcatRows::generic_type::operator=(other); }
|