Merge pull request #278 from dr-robertk/PR/fix-276-gcc44

remove template keyword.
This commit is contained in:
Atgeirr Flø Rasmussen 2015-01-20 14:53:39 +01:00
commit e7dc775a05

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;