Catch up to changing constructor interface in cset 4459fdac9389 .

This commit is contained in:
Bård Skaflestad
2012-01-05 21:36:02 +01:00
parent f278f87f14
commit 9bdc974afa

View File

@@ -26,6 +26,7 @@
#include <iterator>
#include <iostream>
#include <vector>
int main(int argc, char** argv)
{
@@ -36,7 +37,7 @@ int main(int argc, char** argv)
std::string ecl_file = param.get<std::string>("filename");
Dune::EclipseGridParser deck(ecl_file);
Opm::BlackoilPropertiesFromDeck props(deck);
Opm::BlackoilPropertiesFromDeck props(deck, ::std::vector<int>(1));
const int n = 1;
double p[n] = { 150e5 };