From cdb551b115150889db047b303ace8e49edf54400 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Fri, 25 Oct 2013 02:04:23 -0500 Subject: [PATCH] We gotta go longer! --- src/StdString.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/StdString.h b/src/StdString.h index fb7113c03d..43c23b9c61 100644 --- a/src/StdString.h +++ b/src/StdString.h @@ -769,6 +769,10 @@ public: const CT& operator[](long unsigned int nIdx) const { return MYBASE::operator[](static_cast(nIdx)); } + + const CT& operator[](long long unsigned int nIdx) const { + return MYBASE::operator[](static_cast(nIdx)); + } #ifndef SS_NO_IMPLICIT_CASTS operator const CT*() const {