You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GCC 15 is coming soon and we have started to build-test everything with it. This turned up a bug in linbox at https://bugs.gentoo.org/942337, which can be summarized as,
../../linbox/vector/blas-subvector.h: In constructor 'LinBox::BlasSubvector<_Vector>::BlasSubvector(Self_t&, size_t, size_t, size_t)':
../../linbox/vector/blas-subvector.h:121:20: error: 'LinBox::BlasSubvector<_Vector>::Self_t' has no member named 'data'; did you mean 'at'? [-Wtemplate-body[https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html#index-Wno-template-body]]
121 | _ptr(V.data()+beg), _size(dim), _inc(inc), _field(&V.field()) {}
| ^~~~
The new warning most likely arises because GCC now verifies templates when they are parsed, rather than only when they are instantiated.
The text was updated successfully, but these errors were encountered:
GCC 15 is coming soon and we have started to build-test everything with it. This turned up a bug in linbox at https://bugs.gentoo.org/942337, which can be summarized as,
The new warning most likely arises because GCC now verifies templates when they are parsed, rather than only when they are instantiated.
The text was updated successfully, but these errors were encountered: