diff options
Diffstat (limited to 'Source/EmbeddedBoundary/WarpXInitEB.cpp')
-rw-r--r-- | Source/EmbeddedBoundary/WarpXInitEB.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/EmbeddedBoundary/WarpXInitEB.cpp b/Source/EmbeddedBoundary/WarpXInitEB.cpp index b3bb9699b..a3a315ae0 100644 --- a/Source/EmbeddedBoundary/WarpXInitEB.cpp +++ b/Source/EmbeddedBoundary/WarpXInitEB.cpp @@ -8,8 +8,8 @@ #include "WarpX.H" #ifdef AMREX_USE_EB +# include "Utils/Parser/ParserUtils.H" # include "Utils/TextMsg.H" -# include "Utils/WarpXUtil.H" # include <AMReX.H> # include <AMReX_Array.H> @@ -87,7 +87,7 @@ WarpX::InitEB () std::string impf; pp_warpx.query("eb_implicit_function", impf); if (! impf.empty()) { - auto eb_if_parser = makeParser(impf, {"x", "y", "z"}); + auto eb_if_parser = utils::parser::makeParser(impf, {"x", "y", "z"}); ParserIF pif(eb_if_parser.compile<3>()); auto gshop = amrex::EB2::makeShop(pif, eb_if_parser); // The last argument of amrex::EB2::Build is the maximum coarsening level |