@@ -54,7 +54,7 @@ template <typename DerivativeTraits = AD_directional,
54
54
typename IntegratorPolicy = CollocationIntegrator>
55
55
class SphericalSharp __final
56
56
: public GreensFunction<DerivativeTraits, IntegratorPolicy, Sharp,
57
- SphericalSharp<DerivativeTraits, IntegratorPolicy>> {
57
+ SphericalSharp<DerivativeTraits, IntegratorPolicy> > {
58
58
public:
59
59
/* ! Constructor for a one-layer interface
60
60
* \param[in] e permittivity of the sphere
@@ -64,7 +64,7 @@ class SphericalSharp __final
64
64
*/
65
65
SphericalSharp (double e, double esolv, double r, const Eigen::Vector3d & o)
66
66
: GreensFunction<DerivativeTraits, IntegratorPolicy, Sharp,
67
- SphericalSharp<DerivativeTraits, IntegratorPolicy>>(),
67
+ SphericalSharp<DerivativeTraits, IntegratorPolicy> >(),
68
68
origin_ (o) {
69
69
this ->profile_ = Sharp (e, esolv, r);
70
70
}
@@ -77,7 +77,7 @@ class SphericalSharp __final
77
77
SphericalSharp (double e, double esolv, double r, const Eigen::Vector3d & o,
78
78
double f)
79
79
: GreensFunction<DerivativeTraits, IntegratorPolicy, Sharp,
80
- SphericalSharp<DerivativeTraits, IntegratorPolicy>>(f),
80
+ SphericalSharp<DerivativeTraits, IntegratorPolicy> >(f),
81
81
origin_ (o) {
82
82
this ->profile_ = Sharp (e, esolv, r);
83
83
}
0 commit comments