Fix const-correctness.

This commit is contained in:
castano
2009-02-03 09:22:30 +00:00
parent 17790a34df
commit b7ea7a255b

View File

@ -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();
} }