From: Wolfgang Bangerth Date: Fri, 4 Aug 2017 09:45:42 +0000 (-0600) Subject: Fix a compiler error by explicitly providing template arguments. X-Git-Tag: v9.0.0-rc1~1365^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4690%2Fhead;p=dealii.git Fix a compiler error by explicitly providing template arguments. --- diff --git a/include/deal.II/base/symmetric_tensor.templates.h b/include/deal.II/base/symmetric_tensor.templates.h index 6c9e7fd3f9..c38e95eca9 100644 --- a/include/deal.II/base/symmetric_tensor.templates.h +++ b/include/deal.II/base/symmetric_tensor.templates.h @@ -245,7 +245,7 @@ namespace internal std::array w; // The off-diagonal elements of the tridiagonal std::array ee; - tridiagonalize(A, Q, w, ee); + tridiagonalize(A, Q, w, ee); // Number of iterations const unsigned int max_n_it = 30;