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;