add missing method to TinySet
This commit is contained in:
parent
ab334f82b2
commit
5e1547ba78
@ -154,6 +154,11 @@ class TinySet
|
|||||||
return vec_[i];
|
return vec_[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
T& operator[] (typename vector<T>::size_type i)
|
||||||
|
{
|
||||||
|
return vec_[i];
|
||||||
|
}
|
||||||
|
|
||||||
T front (void) const
|
T front (void) const
|
||||||
{
|
{
|
||||||
return vec_.front();
|
return vec_.front();
|
||||||
|
Reference in New Issue
Block a user