From 693ac17aed49b1ffe5adf18dba7317b6835f6ade Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Fri, 11 Apr 2014 11:51:59 +0200 Subject: [PATCH] fix typo: it's PVCDO, not PVDCO (since the parser did not have a definition for this keyword until _very_ recently, I severly doubt that these code paths have been used recently...) --- opm/core/props/pvt/BlackoilPvtProperties.cpp | 4 ++-- opm/core/props/pvt/SinglePvtConstCompr.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/opm/core/props/pvt/BlackoilPvtProperties.cpp b/opm/core/props/pvt/BlackoilPvtProperties.cpp index da5c7a66..cc2ebbcc 100644 --- a/opm/core/props/pvt/BlackoilPvtProperties.cpp +++ b/opm/core/props/pvt/BlackoilPvtProperties.cpp @@ -33,7 +33,7 @@ #include #include -#include +#include #include namespace Opm @@ -168,7 +168,7 @@ namespace Opm props_[phase_usage_.phase_pos[Liquid]].reset(new SinglePvtLiveOil(pvtoTable)); } else if (newParserDeck->hasKeyword("PVCDO")) { - Opm::PvdcoTable pvcdoTable(newParserDeck->getKeyword("PVCDO")); + Opm::PvcdoTable pvcdoTable(newParserDeck->getKeyword("PVCDO")); props_[phase_usage_.phase_pos[Liquid]].reset(new SinglePvtConstCompr(pvcdoTable)); } else { diff --git a/opm/core/props/pvt/SinglePvtConstCompr.hpp b/opm/core/props/pvt/SinglePvtConstCompr.hpp index d6c4d088..a071e318 100644 --- a/opm/core/props/pvt/SinglePvtConstCompr.hpp +++ b/opm/core/props/pvt/SinglePvtConstCompr.hpp @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include @@ -71,7 +71,7 @@ namespace Opm visc_comp_ = pvtwTable.getViscosibilityColumn()[0]; } - SinglePvtConstCompr(const Opm::PvdcoTable &pvdcoTable) + SinglePvtConstCompr(const Opm::PvcdoTable &pvdcoTable) { if (pvdcoTable.numRows() != 1) OPM_THROW(std::runtime_error,