More size_t fixes
This commit is contained in:
parent
86b207e389
commit
a56d446664
|
@ -114,7 +114,7 @@ struct LinkBuffer
|
||||||
return hash.contains(value);
|
return hash.contains(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool containsIdx(int idx)
|
bool containsIdx(size_t idx)
|
||||||
{
|
{
|
||||||
if (vec.empty())
|
if (vec.empty())
|
||||||
return false;
|
return false;
|
||||||
|
@ -132,7 +132,7 @@ struct LinkBuffer
|
||||||
return idx;
|
return idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
T lookup(int idx)
|
T lookup(size_t idx)
|
||||||
{
|
{
|
||||||
return vec[idx];
|
return vec[idx];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue