From 22d1e5874dbe5f1b1bfd61dbf0be8fb6f069f965 Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (o)" <j.wuttke@fz-juelich.de> Date: Thu, 13 Apr 2023 15:34:59 +0200 Subject: [PATCH] use it --- Device/Histo/SimulationResult.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Device/Histo/SimulationResult.cpp b/Device/Histo/SimulationResult.cpp index 8cdfd547448..89a2740fc32 100644 --- a/Device/Histo/SimulationResult.cpp +++ b/Device/Histo/SimulationResult.cpp @@ -44,12 +44,12 @@ SimulationResult& SimulationResult::operator=(SimulationResult&& other) noexcept size_t SimulationResult::rank() const { - return m_data->rank(); + return m_coordsys ? m_coordsys->rank() : 0; } size_t SimulationResult::size() const { - return m_data ? m_data->size() : 0; + return m_coordsys ? m_coordsys->size() : 0; } bool SimulationResult::empty() const -- GitLab