Fix const-correctness.
This commit is contained in:
@ -776,13 +776,13 @@ namespace nv
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Number of entries in the hash.
|
/// Number of entries in the hash.
|
||||||
int size()
|
int size() const
|
||||||
{
|
{
|
||||||
return entry_count;
|
return entry_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Number of entries in the hash.
|
/// Number of entries in the hash.
|
||||||
int count()
|
int count() const
|
||||||
{
|
{
|
||||||
return size();
|
return size();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user