remove template keyword.

This commit is contained in:
Robert K
2015-01-20 14:27:37 +01:00
parent 97b98328c6
commit 0af8dd0e1d

View File

@@ -1279,7 +1279,7 @@ namespace {
double infinityNorm( const ADB& a )
{
if( a.value().size() > 0 ) {
return a.value().matrix().template lpNorm<Eigen::Infinity> ();
return a.value().matrix().lpNorm<Eigen::Infinity> ();
}
else { // this situation can occur when no wells are present
return 0.0;