Skip to content

Commit

Permalink
Remove & and add const.
Browse files Browse the repository at this point in the history
  • Loading branch information
CusiniM authored Aug 10, 2024
1 parent 4da9ef7 commit b711a87
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b711a87

Please sign in to comment.