summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/HashTable.cc2
-rw-r--r--utils/HashTable.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/HashTable.cc b/utils/HashTable.cc
index 4712f0f..44bc557 100644
--- a/utils/HashTable.cc
+++ b/utils/HashTable.cc
@@ -646,7 +646,7 @@ Get the status of an iterator. The status may be one of \var{Normal, StartOfTabl
CcuHashCellIter::
#endif
hashiter_status
-CcuHashCellIter :: Status () const
+CcuHashCellIter :: GetStatus () const
{
if (CurCell)
return Normal;
diff --git a/utils/HashTable.h b/utils/HashTable.h
index ce751ac..c30e5c7 100644
--- a/utils/HashTable.h
+++ b/utils/HashTable.h
@@ -138,7 +138,7 @@ inline void Reset () { CurCell = 0; CurIndex = -1; }
CcuHashCellIter operator ++ (int);
#endif
inline CcuHashCell* operator * () const { return CurCell; }
- hashiter_status Status () const;
+ hashiter_status GetStatus () const;
inline operator int () const { return CurCell != 0; }
};