mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use HashTable iterator 'val()' method instead of 'object()'
This commit is contained in:
@ -39,7 +39,7 @@ void printTable(const HashPtrTable<T>& table)
|
||||
|
||||
forAllConstIters(table, iter)
|
||||
{
|
||||
const T* ptr = iter.object();
|
||||
const T* ptr = iter.val();
|
||||
Info<< iter.key() << " = ";
|
||||
if (ptr)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user