[Glacier] Add the [] operator to string.
This commit is contained in:
parent
990dd4c1e1
commit
ca5361b847
2 changed files with 7 additions and 0 deletions
|
|
@ -38,4 +38,9 @@ bool String::operator==(const String& other) {
|
|||
return true;
|
||||
}
|
||||
|
||||
char String::operator[](uint64_t offset) const {
|
||||
// FIXME: bounds check.
|
||||
return cstr_[offset];
|
||||
}
|
||||
|
||||
} // namespace glcr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue