mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
fixed: do not use Opm:: prefix when inside namespace Opm
This commit is contained in:
@@ -63,9 +63,9 @@ public:
|
||||
|
||||
namespace Opm {
|
||||
|
||||
void ebosGasOilSetDeck(std::unique_ptr<Opm::Deck> deck,
|
||||
std::unique_ptr<Opm::ParseContext> parseContext,
|
||||
std::unique_ptr<Opm::ErrorGuard> errorGuard,
|
||||
void ebosGasOilSetDeck(std::unique_ptr<Deck> deck,
|
||||
std::unique_ptr<ParseContext> parseContext,
|
||||
std::unique_ptr<ErrorGuard> errorGuard,
|
||||
double externalSetupTime)
|
||||
{
|
||||
using ProblemTypeTag = Properties::TTag::EbosGasOilTypeTag;
|
||||
@@ -80,7 +80,7 @@ void ebosGasOilSetDeck(std::unique_ptr<Opm::Deck> deck,
|
||||
int ebosGasOilMain(int argc, char **argv)
|
||||
{
|
||||
using ProblemTypeTag = Properties::TTag::EbosGasOilTypeTag;
|
||||
return Opm::startEbos<ProblemTypeTag>(argc, argv);
|
||||
return startEbos<ProblemTypeTag>(argc, argv);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user