Added operator[](long unsigned int) functions

This commit is contained in:
Steve Checkoway
2003-04-20 12:54:46 +00:00
parent 86fce28601
commit 422b596de5
+8
View File
@@ -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
{