Minor fix, dimens are ints, not doubles.

This commit is contained in:
Atgeirr Flø Rasmussen
2011-12-13 10:36:44 +01:00
parent ff91c6dbc5
commit 5e509537c4

View File

@@ -26,7 +26,7 @@ read_grid(const std::string& dir)
read_vector_from_file(fn, actnum);
fn = dir + '/' + "dimens.txt";
::std::vector<double> dimens;
::std::vector<int> dimens;
read_vector_from_file(fn, dimens);
struct grdecl grdecl;