From f87aefbcc956ed7d5f5747652528e8de9ec4cedb Mon Sep 17 00:00:00 2001 From: Joachim Schoeberl Date: Thu, 26 Dec 2024 20:41:49 +0100 Subject: [PATCH] GetTable --- libsrc/core/hashtable.hpp | 2 +- libsrc/meshing/meshclass.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/core/hashtable.hpp b/libsrc/core/hashtable.hpp index da74a50c..1c1ac7c6 100644 --- a/libsrc/core/hashtable.hpp +++ b/libsrc/core/hashtable.hpp @@ -1124,7 +1124,7 @@ namespace ngcore else return { 0, nullptr }; } - auto & Table() { return table; } + auto & GetTable() { return table; } }; diff --git a/libsrc/meshing/meshclass.cpp b/libsrc/meshing/meshclass.cpp index da16b3cb..9a102f16 100644 --- a/libsrc/meshing/meshclass.cpp +++ b/libsrc/meshing/meshclass.cpp @@ -7104,7 +7104,7 @@ namespace netgen auto compressed_table = creator.MoveTable(); - for (auto row : compressed_table.Table()) + for (auto row : compressed_table.GetTable()) QuickSort (row); return compressed_table;