From a8f48eaf76a7d467cb39cb5ae974317545a17192 Mon Sep 17 00:00:00 2001 From: Luca Fedeli Date: Sat, 16 Mar 2024 00:26:18 +0100 Subject: [PATCH] Remove WarpX:: from ablastr (#4782) --- Source/ablastr/fields/VectorPoissonSolver.H | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/ablastr/fields/VectorPoissonSolver.H b/Source/ablastr/fields/VectorPoissonSolver.H index 6e68d0fadb5..df2287df7f4 100644 --- a/Source/ablastr/fields/VectorPoissonSolver.H +++ b/Source/ablastr/fields/VectorPoissonSolver.H @@ -185,11 +185,10 @@ computeVectorPotential ( amrex::Vector > co relative_tolerance, absolute_tolerance ); // Synchronize the ghost cells, do halo exchange - ablastr::utils::communication::FillBoundary(*A[lev][adim], - A[lev][adim]->nGrowVect(), - WarpX::do_single_precision_comms, - geom[lev].periodicity(), - false); + ablastr::utils::communication::FillBoundary( + *A[lev][adim], A[lev][adim]->nGrowVect(), + do_single_precision_comms, + geom[lev].periodicity(), false); // needed for solving the levels by levels: // - coarser level is initial guess for finer level