Added operator[](long unsigned int) functions
This commit is contained in:
@@ -1228,6 +1228,14 @@ public:
|
||||
{
|
||||
return MYBASE::operator[](static_cast<MYSIZE>(nIdx));
|
||||
}
|
||||
|
||||
CT& operator[](long unsigned int nIdx){
|
||||
return MYBASE::operator[](static_cast<MYSIZE>(nIdx));
|
||||
}
|
||||
|
||||
const CT& operator[](long unsigned int nIdx) const {
|
||||
return MYBASE::operator[](static_cast<MYSIZE>(nIdx));
|
||||
}
|
||||
#ifndef SS_NO_IMPLICIT_CASTS
|
||||
operator const CT*() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user