From a87ef238113ca6d3a38dfdd26eb23d5bbc6da544 Mon Sep 17 00:00:00 2001 From: Rupert Eardley Date: Fri, 1 Sep 2023 16:50:22 +0100 Subject: [PATCH] Change -> to . in IRMINSADMaterial.C to match change in MOOSE --- src/materials/IRMINSADMaterial.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/materials/IRMINSADMaterial.C b/src/materials/IRMINSADMaterial.C index 27165cb..9f8d9c3 100644 --- a/src/materials/IRMINSADMaterial.C +++ b/src/materials/IRMINSADMaterial.C @@ -83,14 +83,14 @@ IRMINSADMaterial::subdomainSetup() // So we have to go through MaterialData here. We already performed the material property // requests through the MaterialPropertyInterface APIs in the INSAD kernels, so we should be // safe for dependencies - _boussinesq_alpha = &_material_data->getProperty( + _boussinesq_alpha = &_material_data.getProperty( _object_tracker->get("alpha", _current_subdomain_id), 0, *this); _temperature = &_subproblem .getStandardVariable( _tid, _object_tracker->get("temperature", _current_subdomain_id)) .adSln(); - _ref_temp = &_material_data->getProperty( + _ref_temp = &_material_data.getProperty( _object_tracker->get("ref_temp", _current_subdomain_id), 0, *this); } else