Added bool flag to ert function ecl_grid_compare()

This commit is contained in:
Joakim Hove 2014-07-17 21:19:30 +02:00
parent e041cf337c
commit 1737afb823

View File

@ -63,7 +63,7 @@ namespace Opm {
}
bool EclipseGrid::equal(const EclipseGrid& other) const {
return ecl_grid_compare( m_grid.get() , other.m_grid.get() , true , false );
return ecl_grid_compare( m_grid.get() , other.m_grid.get() , true , false , false );
}