From b711a877f8d02c70bfaa379c78f1b95e603db676 Mon Sep 17 00:00:00 2001 From: Matteo Cusini <49037133+CusiniM@users.noreply.github.com> Date: Fri, 9 Aug 2024 21:26:03 -0700 Subject: [PATCH] Remove & and add const. --- .../fluidFlow/wells/PerforationFluxKernels.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/coreComponents/physicsSolvers/fluidFlow/wells/PerforationFluxKernels.hpp b/src/coreComponents/physicsSolvers/fluidFlow/wells/PerforationFluxKernels.hpp index db71efee6bd..cca04dfe997 100644 --- a/src/coreComponents/physicsSolvers/fluidFlow/wells/PerforationFluxKernels.hpp +++ b/src/coreComponents/physicsSolvers/fluidFlow/wells/PerforationFluxKernels.hpp @@ -804,12 +804,12 @@ class PerforationFluxKernel : public isothermalPerforationFluxKernels::Perforati /// Element phase fraction arrayView3d< real64 const, multifluid::USD_PHASE > const m_wellElemPhaseFrac; arrayView4d< real64 const, multifluid::USD_PHASE_DC > const m_dPhaseFrac; - arrayView3d< real64 const, multifluid::USD_PHASE > m_wellElemPhaseEnthalpy; - arrayView4d< real64 const, multifluid::USD_PHASE_DC > m_dWellElemPhaseEnthalpy; + arrayView3d< real64 const, multifluid::USD_PHASE > const m_wellElemPhaseEnthalpy; + arrayView4d< real64 const, multifluid::USD_PHASE_DC > const m_dWellElemPhaseEnthalpy; /// Views on energy flux - arrayView1d< real64 > const & m_energyPerfFlux; - arrayView3d< real64 > const & m_dEnergyPerfFlux; + arrayView1d< real64 > const m_energyPerfFlux; + arrayView3d< real64 > const m_dEnergyPerfFlux; /// Views on temperature ElementViewConst< arrayView1d< real64 const > > const m_temp;