From: Daniel Arndt Date: Mon, 13 Jul 2020 16:31:50 +0000 (-0400) Subject: Remove manual additions to LAPACK templates X-Git-Tag: v9.3.0-rc1~1296^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b05180553603d05c821179348fe34c12304a827;p=dealii.git Remove manual additions to LAPACK templates --- diff --git a/include/deal.II/lac/lapack_templates.h b/include/deal.II/lac/lapack_templates.h index fde6c6ed31..3fb5d02885 100644 --- a/include/deal.II/lac/lapack_templates.h +++ b/include/deal.II/lac/lapack_templates.h @@ -5910,48 +5910,6 @@ trtrs(const char * uplo, #endif // DEAL_II_WITH_LAPACK } - - -// These overloads of lamch were added for 9.0 but are replaced by the -// automatically generated versions provided above. These are manual additions -// and should be kept even if this file is regenerated. -template -DEAL_II_DEPRECATED inline void -lamch(const char *, number &) -{ - Assert(false, ExcNotImplemented()); -} - - - -DEAL_II_DEPRECATED -inline void -lamch(const char *cmach, float &precision) -{ -#ifdef DEAL_II_WITH_LAPACK - precision = slamch_(cmach); -#else - (void)cmach; - (void)precision; - Assert(false, LAPACKSupport::ExcMissing("slamch")); -#endif // DEAL_II_WITH_LAPACK -} - - - -DEAL_II_DEPRECATED -inline void -lamch(const char *cmach, double &precision) -{ -#ifdef DEAL_II_WITH_LAPACK - precision = dlamch_(cmach); -#else - (void)cmach; - (void)precision; - Assert(false, LAPACKSupport::ExcMissing("dlamch")); -#endif // DEAL_II_WITH_LAPACK -} - DEAL_II_NAMESPACE_CLOSE #endif