fixed: do not use Opm:: prefix when inside namespace Opm

This commit is contained in:
Arne Morten Kvarving
2021-05-05 11:22:44 +02:00
parent 6b02180ca3
commit a4c0af09d9
66 changed files with 1017 additions and 1016 deletions

View File

@@ -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);
}
}