From f52b3c017ecf32fdba2662b467ea71a8322160a1 Mon Sep 17 00:00:00 2001 From: Gilles Grospellier Date: Wed, 12 Mar 2025 19:45:59 +0100 Subject: [PATCH] =?UTF-8?q?[arcane,core]=20S'assure=20que=20le=20groupe=20?= =?UTF-8?q?est=20bien=20recalcul=C3=A9=20lorsqu'on=20appelle=20'ItemGroup:?= =?UTF-8?q?:checkIsSorted()'.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- arcane/src/arcane/core/ItemGroup.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arcane/src/arcane/core/ItemGroup.cc b/arcane/src/arcane/core/ItemGroup.cc index 6f4ae993e9..974e197f2e 100644 --- a/arcane/src/arcane/core/ItemGroup.cc +++ b/arcane/src/arcane/core/ItemGroup.cc @@ -1,11 +1,11 @@ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- -// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) +// Copyright 2000-2025 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* ItemGroup.cc (C) 2000-2024 */ +/* ItemGroup.cc (C) 2000-2025 */ /* */ /* Groupes d'entités du maillage. */ /*---------------------------------------------------------------------------*/ @@ -653,6 +653,7 @@ _internalApi() const bool ItemGroup:: checkIsSorted() const { + m_impl->_checkNeedUpdate(false); return m_impl->checkIsSorted(); }