From: Jean-Paul Pelteret Date: Sat, 11 May 2019 19:53:04 +0000 (+0200) Subject: Use correct template parameter name in set_value_in_symbol_map() X-Git-Tag: v9.1.0-rc1~53^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ede09e3a66decf9e642d9749ec120588e7913d27;p=dealii.git Use correct template parameter name in set_value_in_symbol_map() --- diff --git a/include/deal.II/differentiation/sd/symengine_scalar_operations.h b/include/deal.II/differentiation/sd/symengine_scalar_operations.h index 668db12fa8..904195afe8 100644 --- a/include/deal.II/differentiation/sd/symengine_scalar_operations.h +++ b/include/deal.II/differentiation/sd/symengine_scalar_operations.h @@ -1303,10 +1303,10 @@ namespace Differentiation } - template + template void set_value_in_symbol_map(types::substitution_map &substitution_map, - const ExpressionType & symbol, + const SymbolicType & symbol, const ValueType & value) { // Call the above function @@ -1314,7 +1314,7 @@ namespace Differentiation internal::set_value_in_symbol_map(substitution_map, static_cast(symbol), static_cast( - ExpressionType(value))); + SymbolicType(value))); }