Fix parameter name

This commit is contained in:
Fredrik Gundersen
2015-05-22 22:58:39 +02:00
parent 48699b569a
commit bb97d3f7bb
2 changed files with 3 additions and 3 deletions

View File

@@ -606,9 +606,9 @@ namespace Opm {
}
void EclipseGrid::fwriteEGRID( const std::string& filename, bool is_metric ) const {
void EclipseGrid::fwriteEGRID( const std::string& filename, bool output_metric ) const {
assertCellInfo();
ecl_grid_fwrite_EGRID( m_grid.get() , filename.c_str(), is_metric );
ecl_grid_fwrite_EGRID( m_grid.get() , filename.c_str(), output_metric );
}

View File

@@ -104,7 +104,7 @@ namespace Opm {
void exportACTNUM( std::vector<int>& actnum) const;
void resetACTNUM( const int * actnum);
bool equal(const EclipseGrid& other) const;
void fwriteEGRID( const std::string& filename, bool is_metric ) const;
void fwriteEGRID( const std::string& filename, bool output_metric ) const;
const ecl_grid_type * c_ptr() const;
private:
std::shared_ptr<ecl_grid_type> m_grid;